mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-09 09:48:22 +00:00
9 lines
196 B
Docker
9 lines
196 B
Docker
FROM nginx:alpine
|
|
|
|
COPY ./dist-ci/ /usr/share/nginx/html/
|
|
COPY docker/nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY docker/entrypoint.sh /entrypoint.sh
|
|
|
|
EXPOSE 80
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|