45 lines
No EOL
1.3 KiB
Docker
45 lines
No EOL
1.3 KiB
Docker
FROM --platform=linux/amd64 node:20-slim AS builder
|
|
|
|
WORKDIR /home/perplexica
|
|
|
|
COPY package.json yarn.lock ./
|
|
RUN yarn install --frozen-lockfile --network-timeout 600000
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
|
|
|
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 --platform=linux/amd64 node:20-slim
|
|
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
|
|
|
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
|
|
|
|
COPY entrypoint.sh ./entrypoint.sh
|
|
|
|
RUN mkdir /home/perplexica/uploads && \
|
|
chmod +x /home/perplexica/entrypoint.sh && \
|
|
npm install playwright --no-fund --no-audit && \
|
|
npx -y playwright install chromium --only-shell --with-deps && \
|
|
rm -rf /root/.npm && \
|
|
apt-get update && \
|
|
apt-get install -y procps && \
|
|
apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
CMD ["./entrypoint.sh"] |