Initial commit, definitely not done yet

This commit is contained in:
askiiart 2023-11-13 22:08:27 -06:00
commit 295edcd693
Signed by untrusted user who does not match committer: askiiart
GPG key ID: BC3800E55FB54D67
5 changed files with 73 additions and 0 deletions

6
Dockerfile Normal file
View file

@ -0,0 +1,6 @@
FROM python:3.12-alpine
WORKDIR /etc/nginx
RUN pip install certbot certbot-nginx
RUN apk add nginx
COPY run.sh /root
ENTRYPOINT ["/root/run.sh"]