mirror of
https://github.com/eduardogsilva/routerfleet.git
synced 2025-06-28 12:30:03 +02:00
6 lines
199 B
Text
6 lines
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;"]
|