mirror of
https://github.com/eduardogsilva/routerfleet.git
synced 2025-06-21 01:25:41 +02:00
7 lines
No EOL
252 B
Text
7 lines
No EOL
252 B
Text
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;"] |