mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2024-12-13 08:45:51 +00:00
6 lines
190 B
Docker
6 lines
190 B
Docker
# Deploy built distribution to nginx
|
|
FROM nginx:alpine
|
|
COPY dist/ /usr/share/nginx/html/
|
|
COPY .docker/nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY .docker/mime.types /etc/nginx/mime.types
|