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.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							| 12345678910111213141516 | 
							- FROM node:lts
 - 
 - RUN apt-get update && apt-get install -y libnss3 libnspr4 libatk1.0-0 libatk-bridge2.0-0 libcups2 libdrm2 libxkbcommon0 libxcomposite1 libxdamage1 libxfixes3 libxrandr2 libgbm1 libasound2
 - 
 - WORKDIR /problem
 - ADD .yarnrc.yml .
 - ADD .yarn ./.yarn/
 - ADD package.json .
 - ADD yarn.lock .
 - 
 - RUN yarn
 - 
 - ADD . .
 - RUN yarn build
 - 
 - CMD ["yarn", "start"]
 
 
  |