mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-04 01:55:10 +02:00
Bumps the major-updates group with 1 update: node. Updates `node` from 20-alpine to 24-alpine --- updated-dependencies: - dependency-name: node dependency-version: 24-alpine dependency-type: direct:production dependency-group: major-updates ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
35 lines
740 B
Docker
35 lines
740 B
Docker
FROM node:24-alpine AS builder
|
|
|
|
WORKDIR /app
|
|
|
|
# COPY package.json package-lock.json ./
|
|
COPY package.json ./
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
RUN npx drizzle-kit generate --dialect sqlite --schema ./server/db/schemas/ --out init
|
|
|
|
RUN npm run build
|
|
|
|
FROM node:24-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", "start"]
|