neb/servers/skel/docker-compose.d/custom/nginx/Dockerfile

12 lines
228 B
Text
Raw Normal View History

2023-10-20 02:09:03 +02:00
FROM nginx:alpine
RUN apk add \
certbot \
certbot-nginx
COPY content /usr/share/nginx/html
COPY conf.d /etc/nginx
COPY nginx.conf /etc/nginx/nginx.conf
COPY entrypoint.sh /entrypoint
ENTRYPOINT [ "sh", "/entrypoint" ]