mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	* Fixed problem with docker-compose not updating new files in the multi-stage build. * Update readme with a new screenshot
		
			
				
	
	
		
			17 lines
		
	
	
		
			261 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			261 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM node:16-bullseye-slim 
 | 
						|
 | 
						|
ARG DEBIAN_FRONTEND=noninteractive
 | 
						|
 | 
						|
WORKDIR /usr/src/app
 | 
						|
 | 
						|
COPY package.json package-lock.json ./
 | 
						|
 | 
						|
RUN apt-get update
 | 
						|
RUN apt-get install gcc g++ make cmake python3 python3-pip ffmpeg -y
 | 
						|
 | 
						|
RUN npm install
 | 
						|
 | 
						|
COPY . .
 | 
						|
 | 
						|
RUN npm run build
 |