mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 02:18:50 -07:00
33 lines
596 B
Docker
33 lines
596 B
Docker
# Build stage
|
|
FROM node:16-alpine3.14 as builder
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY package.json package-lock.json ./
|
|
|
|
RUN apk add --update-cache build-base python3 libheif vips-dev ffmpeg
|
|
RUN npm ci
|
|
|
|
COPY . .
|
|
|
|
RUN npm run build
|
|
|
|
|
|
# Prod stage
|
|
FROM node:16-alpine3.14
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY package.json package-lock.json ./
|
|
COPY start-server.sh start-microservices.sh ./
|
|
|
|
RUN mkdir -p /usr/src/app/dist \
|
|
&& apk add --no-cache libheif vips ffmpeg
|
|
|
|
COPY --from=builder /usr/src/app/node_modules ./node_modules
|
|
COPY --from=builder /usr/src/app/dist ./dist
|
|
|
|
RUN npm prune --production
|
|
|
|
EXPOSE 3001
|