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.
		
		
		
		
		
			
		
			
				
	
	
		
			29 lines
		
	
	
		
			580 B
		
	
	
	
		
			Docker
		
	
			
		
		
	
	
			29 lines
		
	
	
		
			580 B
		
	
	
	
		
			Docker
		
	
# build front-end
 | 
						|
FROM node:lts-alpine AS builder
 | 
						|
 | 
						|
COPY ./ /app
 | 
						|
WORKDIR /app
 | 
						|
 | 
						|
RUN apk add --no-cache git \
 | 
						|
    && npm install pnpm -g \
 | 
						|
    && pnpm install \
 | 
						|
    && pnpm run build \
 | 
						|
    && rm -rf /root/.npm /root/.pnpm-store /usr/local/share/.cache /tmp/*
 | 
						|
 | 
						|
# service
 | 
						|
FROM node:lts-alpine
 | 
						|
 | 
						|
COPY /service /app
 | 
						|
COPY --from=builder /app/dist /app/public
 | 
						|
 | 
						|
WORKDIR /app
 | 
						|
RUN apk add --no-cache git \
 | 
						|
    && npm install pnpm -g \
 | 
						|
    && pnpm install --only=production \
 | 
						|
    && rm -rf /root/.npm /root/.pnpm-store /usr/local/share/.cache /tmp/*
 | 
						|
 | 
						|
 | 
						|
EXPOSE 3002
 | 
						|
 | 
						|
CMD ["pnpm", "run", "start"]
 |