Files
dolibarr-docker-fork/examples/with-certbot/Dockerfile
2022-01-11 17:52:12 +01:00

8 lines
147 B
Docker

FROM nginx:alpine
WORKDIR /etc/nginx
COPY ./nginx/nginx.conf ./conf.d/default.conf
EXPOSE 8080
ENTRYPOINT [ "nginx" ]
CMD [ "-g", "daemon off;" ]