undo remove default virtualhost from nginx

This commit is contained in:
Eduardo Silva 2024-04-05 23:28:45 -03:00
parent 18754d5a3b
commit 2c5238dcac

View file

@ -1,6 +1,5 @@
FROM nginx:alpine
RUN apk --no-cache add openssl
RUN rm /etc/nginx/conf.d/default.conf
COPY nginx_entrypoint.sh /nginx_entrypoint.sh
RUN chmod +x /nginx_entrypoint.sh
ENTRYPOINT ["/nginx_entrypoint.sh"]