# Install dependencies only when needed
FROM node:20-alpine AS deps
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
FROM node:20-alpine AS builder

ENV NEXT_PRIVATE_STANDALONE true

WORKDIR /app

COPY --from=deps /app/node_modules ./node_modules

COPY . .

RUN yarn build

# Production image, copy all the files and run next
FROM node:20-alpine AS runner
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"]