PeerTube/support/docker/production/Dockerfile.nginx

9 lines
175 B
Docker
Raw Normal View History

FROM nginx:alpine
2021-01-07 09:06:21 +01:00
COPY ./support/docker/production/entrypoint.nginx.sh .
RUN chmod +x entrypoint.nginx.sh
2020-12-30 16:53:11 +01:00
EXPOSE 80 443
ENTRYPOINT []
2020-12-30 16:53:11 +01:00
CMD ["/bin/sh", "entrypoint.nginx.sh"]