2024-05-16 05:19:03 +00:00
|
|
|
# Install dependencies only when needed
|
2024-08-15 19:19:57 +00:00
|
|
|
FROM node:18-alpine3.19 AS deps
|
2024-05-16 05:19:03 +00:00
|
|
|
RUN apk add --no-cache libc6-compat
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json yarn.lock ./
|
|
|
|
RUN yarn config set network-timeout 100000
|
|
|
|
RUN yarn install
|
|
|
|
|
|
|
|
# Rebuild the source code only when needed
|
2024-08-15 19:19:57 +00:00
|
|
|
FROM node:18-alpine3.19 AS builder
|
2024-05-16 05:19:03 +00:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY --from=deps /app/node_modules ./node_modules
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
RUN yarn build
|
|
|
|
|
|
|
|
# Production image, copy all the files and run next
|
2024-08-15 19:19:57 +00:00
|
|
|
FROM node:18-alpine3.19 AS runner
|
2024-05-16 05:19:03 +00:00
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
ENV NODE_ENV production
|
|
|
|
|
|
|
|
RUN addgroup --system --gid 1001 ss_site
|
|
|
|
RUN adduser --system --uid 1001 ss_site
|
|
|
|
|
|
|
|
COPY --from=builder /app/public ./public
|
|
|
|
COPY --from=builder /app/package.json ./package.json
|
|
|
|
|
|
|
|
# Automatically leverage output traces to reduce image size
|
|
|
|
# https://nextjs.org/docs/advanced-features/output-file-tracing
|
|
|
|
COPY --from=builder --chown=ss_site:ss_site /app/.next/standalone ./
|
|
|
|
COPY --from=builder --chown=ss_site:ss_site /app/.next/static ./.next/static
|
|
|
|
|
|
|
|
USER ss_site
|
|
|
|
|
|
|
|
EXPOSE 3000
|
|
|
|
|
|
|
|
ENV PORT 3000
|
|
|
|
ENV HOSTNAME "0.0.0.0"
|
|
|
|
|
|
|
|
CMD ["node", "server.js"]
|