This commit is contained in:
2026-01-10 01:20:34 +01:00
commit 664596721e
4 changed files with 89 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
# Dockerfile
FROM alpine:latest
RUN apk add --no-cache curl bash dcron
WORKDIR /app
COPY warm.sh /app/warm.sh
RUN chmod +x /app/warm.sh
CMD ["sh", "/app/warm.sh"]