mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2024-12-13 08:45:51 +00:00
17 lines
267 B
Docker
17 lines
267 B
Docker
# Build final image
|
|
FROM node:12-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY .docker/package.json .docker/nuxt.config.js ./
|
|
|
|
# Copy client files from the build image
|
|
COPY dist/ ./.nuxt/
|
|
|
|
# Install runtime dependencies
|
|
RUN yarn install --production
|
|
|
|
EXPOSE 80
|
|
|
|
CMD [ "yarn", "start" ]
|