wireguard_webadmin/Dockerfile_nginx

8 lines
253 B
Plaintext
Raw Normal View History

FROM nginx:alpine
RUN apk --no-cache add openssl
COPY nginx_entrypoint.sh /nginx_entrypoint.sh
2024-04-08 09:10:44 -03:00
COPY virtualhost.conf /etc/nginx/conf.d/default.conf
RUN chmod +x /nginx_entrypoint.sh
ENTRYPOINT ["/nginx_entrypoint.sh"]
CMD ["nginx", "-g", "daemon off;"]