73eff05180
* feat: use yarn v3 * chore: bump yarn to 3.2.1
46 lines
No EOL
1.2 KiB
Text
46 lines
No EOL
1.2 KiB
Text
FROM node:16 AS deps
|
|
WORKDIR /build
|
|
|
|
COPY .yarn .yarn
|
|
COPY package.json yarn.lock .yarnrc.yml ./
|
|
|
|
RUN yarn install --immutable
|
|
|
|
FROM node:16 AS builder
|
|
WORKDIR /build
|
|
|
|
COPY --from=deps /build/node_modules ./node_modules
|
|
COPY src ./src
|
|
COPY scripts ./scripts
|
|
COPY prisma ./prisma
|
|
COPY .yarn .yarn
|
|
COPY package.json yarn.lock .yarnrc.yml esbuild.config.js next.config.js next-env.d.ts zip-env.d.ts tsconfig.json ./
|
|
|
|
ENV ZIPLINE_DOCKER_BUILD 1
|
|
ENV NEXT_TELEMETRY_DISABLED 1
|
|
|
|
RUN yarn build
|
|
|
|
FROM node:16 AS runner
|
|
WORKDIR /zipline
|
|
|
|
ENV NODE_ENV production
|
|
ENV NEXT_TELEMETRY_DISABLED 1
|
|
|
|
RUN addgroup --system --gid 1001 zipline
|
|
RUN adduser --system --uid 1001 zipline
|
|
|
|
COPY --from=builder --chown=zipline:zipline /build/.next ./.next
|
|
COPY --from=builder --chown=zipline:zipline /build/dist ./dist
|
|
COPY --from=builder --chown=zipline:zipline /build/node_modules ./node_modules
|
|
|
|
COPY --from=builder /build/next.config.js ./next.config.js
|
|
COPY --from=builder /build/src ./src
|
|
COPY --from=builder /build/scripts ./scripts
|
|
COPY --from=builder /build/prisma ./prisma
|
|
COPY --from=builder /build/tsconfig.json ./tsconfig.json
|
|
COPY --from=builder /build/package.json ./package.json
|
|
|
|
USER zipline
|
|
|
|
CMD ["node", "dist/server"] |