docker-certbot-nginx/Dockerfile
askiiart f4d03d5190
All checks were successful
continuous-integration/drone Build is passing
Finally get run.sh working properly
2023-11-14 13:25:43 -06:00

5 lines
152 B
Docker

FROM python:3.12-alpine
RUN pip install certbot certbot-nginx --no-cache-dir
RUN apk add nginx --no-cache
ADD run.sh /root/run.sh
CMD [ "/root/run.sh" ]