mirror of https://github.com/MaxLeiter/Drift
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			39 lines
		
	
	
		
			975 B
		
	
	
	
		
			Docker
		
	
			
		
		
	
	
			39 lines
		
	
	
		
			975 B
		
	
	
	
		
			Docker
		
	
# Install dependencies only when needed
 | 
						|
FROM node:16-alpine AS deps
 | 
						|
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
 | 
						|
RUN apk add --no-cache libc6-compat git
 | 
						|
WORKDIR /app
 | 
						|
COPY package.json yarn.lock tsconfig.json tslint.json ./
 | 
						|
RUN yarn install --frozen-lockfile
 | 
						|
 | 
						|
# If using npm with a `package-lock.json` comment out above and use below instead
 | 
						|
# COPY package.json package-lock.json ./ 
 | 
						|
# RUN npm ci
 | 
						|
 | 
						|
# Rebuild the source code only when needed
 | 
						|
FROM node:16-alpine AS builder
 | 
						|
WORKDIR /app
 | 
						|
COPY --from=deps /app/node_modules ./node_modules
 | 
						|
COPY . .
 | 
						|
 | 
						|
RUN yarn build
 | 
						|
 | 
						|
FROM node:16-alpine AS runner
 | 
						|
WORKDIR /app
 | 
						|
 | 
						|
ENV NODE_ENV production
 | 
						|
 | 
						|
RUN addgroup --system --gid 1001 nodejs
 | 
						|
RUN adduser --system --uid 1001 drift
 | 
						|
 | 
						|
COPY --from=builder /app/dist ./dist
 | 
						|
COPY --from=builder /app/node_modules ./node_modules
 | 
						|
 | 
						|
USER drift
 | 
						|
 | 
						|
EXPOSE 3000
 | 
						|
 | 
						|
ENV PORT 3000
 | 
						|
 | 
						|
CMD ["node", "dist/index.js"]
 |