fox-proxy-letsencrypt/Dockerfile

21 lines
289 B
Docker

FROM ubuntu:22.10
RUN apt-get update -y \
&& apt-get install -y \
nginx \
supervisor \
certbot \
python3-certbot-nginx \
cron \
libnginx-mod-stream \
&& rm -rf /tmp/* \
&& rm -rf /var/lib/apt/lists/*
COPY ./rootfs /
EXPOSE 80
EXPOSE 443
CMD ["/usr/bin/supervisord"]