mirror of
				https://github.com/aurora-dot/pastel.codes.git
				synced 2025-11-04 00:51:35 +00:00 
			
		
		
		
	Rename prepare step Attempt docker fix Docker fix Fix bio and add pug prettier config Fix spacing Fix grammer
		
			
				
	
	
		
			14 lines
		
	
	
		
			235 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			235 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM node:21-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" ]
 |