Files
Bram 07924fe892
Build and Push Docker Images / build-and-push (push) Failing after 52s
dns proxy
2026-08-30 23:00:48 +02:00

14 lines
218 B
Docker

FROM caddy:2-alpine
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENV LISTEN_PORT=8080 \
TARGET_URL="" \
PROXY_INSECURE_TLS=0 \
PRESERVE_HOST=0
EXPOSE 8080
ENTRYPOINT ["/entrypoint.sh"]