mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 18:29:27 +02:00
8 lines
175 B
Nginx Configuration File
8 lines
175 B
Nginx Configuration File
FROM nginx:alpine
|
|
|
|
COPY ./support/docker/production/entrypoint.nginx.sh .
|
|
RUN chmod +x entrypoint.nginx.sh
|
|
|
|
EXPOSE 80 443
|
|
ENTRYPOINT []
|
|
CMD ["/bin/sh", "entrypoint.nginx.sh"]
|