eduardogsilva.routerfleet/containers/nginx/Dockerfile-nginx

7 lines
252 B
Text
Raw Normal View History

2024-04-04 15:11:13 -03:00
FROM nginx:alpine
RUN apk --no-cache add openssl
COPY nginx_entrypoint.sh /nginx_entrypoint.sh
2024-04-08 17:32:56 -03:00
COPY virtualhost.conf /etc/nginx/conf.d/default.conf
2024-04-04 15:11:13 -03:00
RUN chmod +x /nginx_entrypoint.sh
ENTRYPOINT ["/nginx_entrypoint.sh"]
CMD ["nginx", "-g", "daemon off;"]