Finally get run.sh working properly
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
askiiart 2023-11-14 13:25:43 -06:00
parent 918e5edf18
commit f4d03d5190
Signed by untrusted user who does not match committer: askiiart
GPG key ID: BC3800E55FB54D67
3 changed files with 5 additions and 8 deletions

View file

@ -1,6 +1,5 @@
FROM python:3.12-alpine
WORKDIR /etc/nginx
RUN pip install certbot certbot-nginx --no-cache-dir
RUN apk add nginx --no-cache
COPY run.sh /root
CMD ["/root/run.sh"]
ADD run.sh /root/run.sh
CMD [ "/root/run.sh" ]