mirror of
https://github.com/eduardogsilva/routerfleet.git
synced 2025-06-21 01:25:41 +02:00
6 lines
No EOL
199 B
Text
6 lines
No EOL
199 B
Text
FROM nginx:alpine
|
|
RUN apk --no-cache add openssl
|
|
COPY nginx_entrypoint.sh /nginx_entrypoint.sh
|
|
RUN chmod +x /nginx_entrypoint.sh
|
|
ENTRYPOINT ["/nginx_entrypoint.sh"]
|
|
CMD ["nginx", "-g", "daemon off;"] |