jan/web-client/Dockerfile
hiento09 a251a32528
Add CI for Jan-cloud (#69)
* Add CI staging for Jan-cloud

* Update web-client/Dockerfile

switch from npm to yarn command

Co-authored-by: Louis <133622055+louis-jan@users.noreply.github.com>

* Update web-client/Dockerfile

Correct yarn build command

Co-authored-by: Louis <133622055+louis-jan@users.noreply.github.com>

---------

Co-authored-by: Hien To <tominhhien97@gmail.com>
Co-authored-by: Louis <133622055+louis-jan@users.noreply.github.com>
2023-09-07 10:21:06 +07:00

48 lines
1.2 KiB
Docker

FROM node:20-alpine AS base
# 1. Install dependencies only when needed
FROM base AS deps
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
RUN apk add --no-cache libc6-compat
WORKDIR /app
# Install dependencies based on the preferred package manager
COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./
RUN yarn add graphql && yarn install
# 2. Rebuild the source code only when needed
FROM base AS builder
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .
# This will do the trick, use the corresponding env file for each environment.
RUN yarn build
# 3. Production image, copy all the files and run next
FROM base AS runner
WORKDIR /app
ENV NODE_ENV=production
RUN \
addgroup -g 1001 -S nodejs; \
adduser -S nextjs -u 1001
COPY --from=builder /app/public ./public
# Automatically leverage output traces to reduce image size
# https://nextjs.org/docs/advanced-features/output-file-tracing
# COPY --from=builder --chown=nextjs:nodejs /app/.next ./.next
COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/package.json ./package.json
USER nextjs
EXPOSE 3000
ENV PORT 3000
CMD ["npm", "start"]