mirror of
				https://github.com/ItzCrazyKns/Perplexica.git
				synced 2025-10-31 03:18:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			992 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			992 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM node:20.18.0-slim AS builder
 | |
| 
 | |
| WORKDIR /home/perplexica
 | |
| 
 | |
| COPY package.json yarn.lock ./
 | |
| RUN yarn install --frozen-lockfile --network-timeout 600000
 | |
| 
 | |
| COPY tsconfig.json next.config.mjs next-env.d.ts postcss.config.js drizzle.config.ts tailwind.config.ts ./
 | |
| COPY src ./src
 | |
| COPY public ./public
 | |
| 
 | |
| RUN mkdir -p /home/perplexica/data
 | |
| RUN yarn build
 | |
| 
 | |
| RUN yarn add --dev @vercel/ncc
 | |
| RUN yarn ncc build ./src/lib/db/migrate.ts -o migrator
 | |
| 
 | |
| FROM node:20.18.0-slim
 | |
| 
 | |
| WORKDIR /home/perplexica
 | |
| 
 | |
| COPY --from=builder /home/perplexica/public ./public
 | |
| COPY --from=builder /home/perplexica/.next/static ./public/_next/static
 | |
| 
 | |
| COPY --from=builder /home/perplexica/.next/standalone ./
 | |
| COPY --from=builder /home/perplexica/data ./data
 | |
| COPY drizzle ./drizzle
 | |
| COPY --from=builder /home/perplexica/migrator/build ./build
 | |
| COPY --from=builder /home/perplexica/migrator/index.js ./migrate.js
 | |
| 
 | |
| RUN mkdir /home/perplexica/uploads
 | |
| 
 | |
| COPY entrypoint.sh ./entrypoint.sh
 | |
| RUN chmod +x ./entrypoint.sh
 | |
| CMD ["./entrypoint.sh"] |