Spaces:
Sleeping
Sleeping
File size: 673 Bytes
296bf3d 5e870e6 296bf3d 5e870e6 296bf3d 5e870e6 296bf3d 5e870e6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | # Stage 1: Builder
FROM node:20-alpine AS builder
WORKDIR /app
# 👇 Accept build-time variable
ARG NEXT_PUBLIC_API_URL
ENV NEXT_PUBLIC_API_URL=$NEXT_PUBLIC_API_URL
COPY package.json package-lock.json* ./
RUN npm ci
COPY . .
RUN npm run build
# Stage 2: Runner
FROM node:20-alpine AS runner
RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs
WORKDIR /app
COPY --from=builder /app/public ./public
COPY --from=builder /app/.next/standalone ./
COPY --from=builder /app/.next/static ./.next/static
RUN chown -R nextjs:nodejs /app
ENV NODE_ENV=production
ENV NEXT_TELEMETRY_DISABLED=1
USER nextjs
EXPOSE 3000
CMD ["node", "server.js"]
|