This commit is contained in:
2026-03-19 11:47:17 +03:00
commit baf4d7a906
10 changed files with 369 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM nginx:stable
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install -y --no-install-recommends certbot cron tzdata \
&& rm -rf /var/lib/apt/lists/*
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]