You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							23 lines
						
					
					
						
							450 B
						
					
					
				
			
		
		
	
	
							23 lines
						
					
					
						
							450 B
						
					
					
				FROM node:lts-alpine
 | 
						|
 | 
						|
# where the files live
 | 
						|
WORKDIR /app
 | 
						|
 | 
						|
# get the sauce
 | 
						|
COPY /client/src/ /app/src/
 | 
						|
 | 
						|
# add `/app/node_modules/.bin` to $PATH
 | 
						|
ENV PATH /app/node_modules/.bin:$PATH
 | 
						|
 | 
						|
# make sure the packages are the same
 | 
						|
COPY /client/package-lock.json /app/package.json
 | 
						|
 | 
						|
# install and cache app dependencies
 | 
						|
COPY /client/package.json /app/package.json
 | 
						|
RUN npm install
 | 
						|
 | 
						|
# start app
 | 
						|
CMD ["npm", "run", "serve"]
 | 
						|
 | 
						|
# allow to be peeked inside
 | 
						|
EXPOSE 8080
 | 
						|
 |