66 lines
1.6 KiB
Docker
66 lines
1.6 KiB
Docker
FROM fascinated/docker-images:nodejs_20_with_pnpm AS base
|
|
|
|
# Install dependencies and build tools for canvas
|
|
FROM base AS deps
|
|
RUN apk add --no-cache python3 make g++ gcc pkgconfig pixman cairo-dev libjpeg-turbo-dev pango-dev giflib-dev
|
|
WORKDIR /app
|
|
COPY package.json* pnpm-lock.yaml* ./
|
|
RUN pnpm install --frozen-lockfile --quiet
|
|
|
|
# Build from source
|
|
FROM base AS builder
|
|
WORKDIR /app
|
|
COPY --from=deps /app/node_modules ./node_modules
|
|
COPY . .
|
|
|
|
# Install runtime dependencies
|
|
RUN apk add --no-cache cairo pango libjpeg-turbo giflib
|
|
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
|
|
|
# Add the commit hash
|
|
ARG GIT_REV
|
|
ENV GIT_REV=${GIT_REV}
|
|
|
|
# Add the sentry auth token
|
|
ARG SENTRY_AUTH_TOKEN
|
|
ENV SENTRY_AUTH_TOKEN=${SENTRY_AUTH_TOKEN}
|
|
|
|
# Build the app
|
|
RUN pnpm run build
|
|
|
|
# Final stage to run the app
|
|
FROM base AS runner
|
|
WORKDIR /app
|
|
|
|
# Install runtime dependencies
|
|
RUN apk add --no-cache cairo pango libjpeg-turbo giflib
|
|
|
|
ENV NODE_ENV=production
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
|
|
|
RUN addgroup --system --gid 1001 nodejs
|
|
RUN adduser --system --uid 1001 nextjs
|
|
|
|
RUN mkdir .next
|
|
RUN chown nextjs:nodejs .next
|
|
|
|
# Add the commit hash
|
|
ARG GIT_REV
|
|
ENV GIT_REV=${GIT_REV}
|
|
|
|
# Copy the built app from the builder stage
|
|
COPY --from=builder --chown=nextjs:nodejs /app/node_modules ./node_modules
|
|
COPY --from=builder --chown=nextjs:nodejs /app/.next ./.next
|
|
COPY --from=builder --chown=nextjs:nodejs /app/public ./public
|
|
COPY --from=builder --chown=nextjs:nodejs /app/package.json ./package.json
|
|
COPY --from=builder --chown=nextjs:nodejs /app/next.config.mjs ./next.config.mjs
|
|
|
|
USER nextjs
|
|
|
|
EXPOSE 3000
|
|
ENV HOSTNAME="0.0.0.0"
|
|
ENV PORT=3000
|
|
|
|
CMD ["pnpm", "start"]
|