Dockerhub integration

This commit is contained in:
Eduardo Silva 2024-04-08 17:32:56 -03:00
parent 03f027f100
commit ab908887e4
9 changed files with 294 additions and 66 deletions

View file

@ -1,6 +1,7 @@
FROM nginx:alpine
RUN apk --no-cache add openssl
COPY nginx_entrypoint.sh /nginx_entrypoint.sh
COPY virtualhost.conf /etc/nginx/conf.d/default.conf
RUN chmod +x /nginx_entrypoint.sh
ENTRYPOINT ["/nginx_entrypoint.sh"]
CMD ["nginx", "-g", "daemon off;"]