Files
cloudflare-updatedns/DockerFile
Márcio Fernandes 5a262c1eda
Some checks failed
/ build-docker-image (push) Failing after 7s
first commit :)
2025-10-05 00:25:00 +00:00

12 lines
268 B
Plaintext

# 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"]