mirror of
				https://github.com/aurora-dot/pastel.codes.git
				synced 2025-10-30 22:51:34 +00:00 
			
		
		
		
	The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN10-GLIBC-1315333 - https://snyk.io/vuln/SNYK-DEBIAN10-PYTHON27-1063178 - https://snyk.io/vuln/SNYK-DEBIAN10-PYTHON27-1063178 - https://snyk.io/vuln/SNYK-DEBIAN10-PYTHON27-1063178 - https://snyk.io/vuln/SNYK-DEBIAN10-PYTHON27-1063178
		
			
				
	
	
		
			14 lines
		
	
	
		
			235 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			235 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM node:16-bullseye-slim
 | |
| 
 | |
| ENV IS_DOCKER=true
 | |
| ENV NODE_ENV=production
 | |
| 
 | |
| WORKDIR /app
 | |
| COPY ["package.json", "package-lock.json*", "./"]
 | |
| RUN npm install
 | |
| RUN npm install nodemon
 | |
| COPY . .
 | |
| RUN npm run build-tailwind
 | |
| 
 | |
| CMD [ "npm", "start" ]
 |