mirror of
https://github.com/immich-app/immich.git
synced 2024-11-24 08:52:28 +02:00
c28251b8b4
* Added selection icon to thumbnail * Added micro-interaction and video file indication * Added page to add page * Added image viewer * navigate assets * Added separate component for viewing the video file * Added FFmpeg modules * Added correct content-type header for serving image file * Added loading spinner
15 lines
243 B
Docker
15 lines
243 B
Docker
FROM node:16-alpine3.14
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY package.json package-lock.json ./
|
|
|
|
RUN apk add --update-cache build-base python3 libheif vips-dev vips ffmpeg
|
|
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
RUN npm run build |