2024-03-05 13:26:18 -03:00
|
|
|
FROM nginx:alpine
|
|
|
|
|
RUN apk --no-cache add openssl
|
|
|
|
|
COPY nginx_entrypoint.sh /nginx_entrypoint.sh
|
2024-04-08 09:10:44 -03:00
|
|
|
COPY virtualhost.conf /etc/nginx/conf.d/default.conf
|
2024-03-05 13:26:18 -03:00
|
|
|
RUN chmod +x /nginx_entrypoint.sh
|
|
|
|
|
ENTRYPOINT ["/nginx_entrypoint.sh"]
|
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|