mirror of
https://github.com/eduardogsilva/routerfleet.git
synced 2025-08-02 01:04:26 +02:00
8 lines
No EOL
339 B
Text
8 lines
No EOL
339 B
Text
FROM nginx:alpine
|
|
RUN apk --no-cache add openssl
|
|
COPY nginx_entrypoint.sh /nginx_entrypoint.sh
|
|
COPY virtualhost.conf /etc/nginx/virtualhost.conf.disabled
|
|
COPY virtualhost_noredirect.conf /etc/nginx/virtualhost_noredirect.conf.disabled
|
|
RUN chmod +x /nginx_entrypoint.sh
|
|
ENTRYPOINT ["/nginx_entrypoint.sh"]
|
|
CMD ["nginx", "-g", "daemon off;"] |