ваше сообщение коммита

This commit is contained in:
2025-06-29 02:07:50 +03:00
parent b2dcaaab42
commit 0c37942282
28 changed files with 10118 additions and 168 deletions

9
Dockerfile.cloudflared Normal file
View File

@@ -0,0 +1,9 @@
FROM alpine:3.20 as base
RUN apk add --no-cache bash curl wget
FROM cloudflare/cloudflared:2025.6.1 as src
FROM base
COPY --from=src /usr/local/bin/cloudflared /usr/local/bin/cloudflared
USER nobody
ENTRYPOINT ["bash", "/start-cloudflared.sh"]