dns proxy
Build and Push Docker Images / build-and-push (push) Failing after 52s

This commit is contained in:
2026-08-30 23:00:48 +02:00
parent 23a2d1964a
commit 07924fe892
3 changed files with 87 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
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"]