ss_website/Dockerfile

47 lines
1.0 KiB
Docker
Raw Normal View History

2024-05-16 05:19:03 +00:00
# Install dependencies only when needed
2024-08-16 02:30:56 +00:00
FROM node:20-alpine 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-16 02:30:56 +00:00
FROM node:20-alpine AS builder
2024-05-16 05:19:03 +00:00
2024-08-16 03:26:20 +00:00
ENV NEXT_PRIVATE_STANDALONE true
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-16 02:30:56 +00:00
FROM node:20-alpine 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"]