FROM nginx:alpine RUN apk add \ certbot \ certbot-nginx COPY content /usr/share/nginx/html COPY conf.d/ /etc/nginx/conf.d/ COPY nginx.conf /etc/nginx/nginx.conf VOLUME /etc/nginx/conf.d/ VOLUME /usr/share/nginx/html/ COPY entrypoint.sh /entrypoint ENTRYPOINT [ "sh", "/entrypoint" ] CMD [ "nginx", "-g", "daemon off;" ]