add certbot nginx

This commit is contained in:
Timi
2026-01-23 11:15:00 +08:00
parent e33ab8cd90
commit 7080b2ae6c
2 changed files with 67 additions and 0 deletions

5
nginx/Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM nginx:latest
RUN apt-get update \
&& apt-get install -y --no-install-recommends certbot \
&& rm -rf /var/lib/apt/lists/*