fix docker file name
All checks were successful
/ build-docker-image (push) Successful in 11s

This commit is contained in:
2025-10-05 00:30:49 +00:00
parent 5a262c1eda
commit aae2902d64
2 changed files with 1 additions and 1 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
# Start from Alpine base image
FROM alpine:latest
# Install bash and curl
RUN apk update && apk add --no-cache curl bash
COPY src /app/scripts
RUN chmod +x /app/scripts -R
ENV LOOP=60
# Set bash as the default shell
CMD ["/bin/sh","-c", "/app/scripts/update-ip.sh"]