initial commit: add dockerfile

This commit is contained in:
DarkCat09 2025-02-18 22:57:34 +04:00
commit ffa7ecb115
Signed by: DarkCat09
GPG key ID: BD3CE9B65916CD82
2 changed files with 44 additions and 0 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM alpine:latest
RUN apk add --no-cache nginx python3 py3-virtualenv
RUN python3 -m venv /venv
RUN /venv/bin/pip install -U pip certbot certbot-nginx
RUN apk del py3-virtualenv && rm -rf /var/cache/apk
COPY ./entrypoint.sh /
CMD ["/entrypoint.sh"]