mirror of
				https://github.com/ProjectSegfault/website.git
				synced 2025-05-31 14:12:04 +05:30 
			
		
		
		
	docker
This commit is contained in:
		
							
								
								
									
										1
									
								
								.dockerignore
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								.dockerignore
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| node_modules | ||||
							
								
								
									
										12
									
								
								Dockerfile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								Dockerfile
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,12 @@ | ||||
| FROM node:16 AS build | ||||
|  | ||||
| WORKDIR /app | ||||
|  | ||||
| COPY package.json ./ | ||||
| RUN npm install | ||||
| COPY . ./ | ||||
| RUN npm run build | ||||
|  | ||||
| FROM nginx:1.23-alpine | ||||
| COPY --from=build /app/build /usr/share/nginx/html | ||||
| EXPOSE 80 | ||||
		Reference in New Issue
	
	Block a user