0
0
mirror of https://github.com/jellyfin/jellyfin-vue.git synced 2025-04-04 10:55:17 +00:00
Files
Fernando Fernández 1f8aed8c0c chore(docker): trim more the image, always run setup (#2491)
This allows to simplify the custom entrypoints command a little bit
2024-11-06 22:51:07 +00:00

42 lines
1.1 KiB
Docker

## This dockerfile builds the client entirely in a Docker context
# slim image can't be used since we need git to fetch the commit hash
FROM node:lts-slim AS build
# Set build arguments
ARG IS_STABLE=0
ARG COMMIT_HASH
# Set environment variables
ENV IS_STABLE=$IS_STABLE
ENV COMMIT_HASH=$COMMIT_HASH
COPY package.json package-lock.json .npmrc /app/
COPY frontend /app/frontend
COPY packages /app/packages
WORKDIR /app/frontend
# Build client
RUN npm ci --no-audit && npm run build
# Deploy built distribution to nginx
FROM nginx:stable-alpine-slim
ENV ASSETS=/usr/share/nginx/html
ENV NGINX_DEFAULT_SITE_CONFIG=/etc/nginx/conf.d/default.conf
COPY packaging/docker/contents/nginx.conf "$NGINX_DEFAULT_SITE_CONFIG"
COPY packaging/docker/contents/*.sh /
COPY LICENSE /usr/share/licenses/jellyfin-vue
RUN rm -rf "$ASSETS"/*
COPY --from=build /app/frontend/dist/ "$ASSETS"
RUN chmod +x /*.sh && /postunpack.sh && rm /postunpack.sh
USER nginx
WORKDIR "$ASSETS"
EXPOSE 80
# Set labels
LABEL maintainer="Jellyfin Packaging Team - packaging@jellyfin.org"
LABEL org.opencontainers.image.source="https://github.com/jellyfin/jellyfin-vue"