24 lines
730 B
Docker
24 lines
730 B
Docker
FROM node:22-alpine AS dependencies
|
|
WORKDIR /app
|
|
COPY package.json yarn.lock .yarnrc.yml ./
|
|
RUN corepack enable && yarn install
|
|
|
|
FROM node:22-alpine AS builder
|
|
WORKDIR /app
|
|
COPY --from=dependencies /app/node_modules ./node_modules
|
|
COPY . .
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
|
RUN corepack enable && corepack prepare yarn@1.22.22 --activate && yarn build
|
|
|
|
FROM node:22-alpine AS runner
|
|
WORKDIR /app
|
|
ENV NODE_ENV=production
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
|
COPY --from=builder /app/package.json ./package.json
|
|
COPY --from=builder /app/node_modules ./node_modules
|
|
COPY --from=builder /app/.next ./.next
|
|
COPY --from=builder /app/public ./public
|
|
RUN corepack enable && corepack prepare yarn@1.22.22 --activate
|
|
EXPOSE 3000
|
|
CMD ["yarn", "start"]
|