main-site/Dockerfile

46 lines
969 B
Docker
Raw Permalink Normal View History

2022-12-03 20:02:13 +00:00
## INIT STEP
# Install dependencies only when needed
2022-12-14 18:34:39 +00:00
FROM node:18-alpine AS deps
2022-12-03 20:02:13 +00:00
RUN apk add --no-cache libc6-compat
WORKDIR /app
# Copy the files needed to install deps
COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile
## BUILD STEP
# Rebuild the source code only when needed
2022-12-14 18:34:39 +00:00
FROM node:18-alpine AS builder
2022-12-03 20:02:13 +00:00
WORKDIR /app
# Copy node_modules installed by the deps step
COPY --from=deps /app/node_modules ./node_modules
COPY . .
RUN yarn build
## RUN STEP
2022-12-14 18:34:39 +00:00
FROM node:18-alpine AS runner
2022-12-03 20:02:13 +00:00
LABEL author="neshura@proton.me"
2023-01-18 10:22:49 +00:00
WORKDIR /app
2022-12-03 20:02:13 +00:00
ENV NODE_ENV production
COPY --from=builder /app/public ./public
COPY --from=builder /app/node_modules ./node_modules
# Automatically leverage output traces to reduce image size
# https://nextjs.org/docs/advanced-features/output-file-tracing
COPY --from=builder /app/.next/standalone ./
COPY --from=builder /app/.next/static ./.next/static
2022-12-03 20:02:13 +00:00
# expose port 3000
ENV PORT 3000
EXPOSE 3000
CMD [ "yarn", "start" ]