mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2025-11-19 11:36:16 +00:00
7 lines
200 B
Plaintext
7 lines
200 B
Plaintext
|
|
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;"]
|