mirror of https://github.com/Chocobozzz/PeerTube
8 lines
142 B
Docker
8 lines
142 B
Docker
|
FROM nginx:alpine
|
||
|
|
||
|
COPY entrypoint.nginx.sh .
|
||
|
RUN chmod +x entrypoint.nginx.sh
|
||
|
|
||
|
EXPOSE 80
|
||
|
ENTRYPOINT []
|
||
|
CMD ["/bin/sh", "entrypoint.nginx.sh"]
|