mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-25 15:07:21 +00:00
9 lines
250 B
Docker
9 lines
250 B
Docker
FROM nginxinc/nginx-unprivileged:alpine
|
|
|
|
COPY --chown=101:101 ./dist-ci/ /usr/share/nginx/html/
|
|
COPY --chown=101:101 docker/nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY docker/entrypoint.sh /entrypoint.sh
|
|
|
|
EXPOSE 80
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|