first commit :)
Some checks failed
/ build-docker-image (push) Failing after 7s

This commit is contained in:
2025-10-05 00:25:00 +00:00
parent 4db2c4e285
commit 5a262c1eda
8 changed files with 266 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"]