mirror of
				https://github.com/fosrl/pangolin.git
				synced 2025-10-30 22:27:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			816 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			816 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM node:20-alpine AS builder
 | |
| 
 | |
| WORKDIR /app
 | |
| 
 | |
| # COPY package.json package-lock.json ./
 | |
| COPY package.json ./
 | |
| RUN npm install
 | |
| 
 | |
| COPY . .
 | |
| 
 | |
| RUN echo 'export * from "./pg";' > server/db/index.ts
 | |
| 
 | |
| RUN npx drizzle-kit generate --dialect postgresql --schema ./server/db/pg/schema.ts --out init
 | |
| 
 | |
| RUN npm run build:pg
 | |
| 
 | |
| FROM node:20-alpine AS runner
 | |
| 
 | |
| WORKDIR /app
 | |
| 
 | |
| # Curl used for the health checks
 | |
| RUN apk add --no-cache curl
 | |
| 
 | |
| # COPY package.json package-lock.json ./
 | |
| COPY package.json ./
 | |
| RUN npm install --only=production && npm cache clean --force
 | |
| 
 | |
| COPY --from=builder /app/.next/standalone ./
 | |
| COPY --from=builder /app/.next/static ./.next/static
 | |
| COPY --from=builder /app/dist ./dist
 | |
| COPY --from=builder /app/init ./dist/init
 | |
| 
 | |
| COPY server/db/names.json ./dist/names.json
 | |
| 
 | |
| COPY public ./public
 | |
| 
 | |
| CMD ["npm", "run", "start:pg"]
 | 
