Files
cloudflare-updatedns/Dockerfile
Márcio Fernandes aae2902d64
All checks were successful
/ build-docker-image (push) Successful in 11s
fix docker file name
2025-10-05 00:30:49 +00:00

12 lines
268 B
Docker

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