yea
Some checks failed
Deploy Frontend / deploy (push) Failing after 25s

This commit is contained in:
Lee 2024-10-04 12:06:28 +01:00
parent 21e120de07
commit a7474f67eb
3 changed files with 15 additions and 16 deletions

@ -3,15 +3,13 @@ FROM fascinated/docker-images:nodejs_20_with_pnpm AS base
FROM base AS builder FROM base AS builder
RUN apk update RUN apk update
RUN apk add --no-cache libc6-compat RUN apk add --no-cache libc6-compat
# Set working directory
WORKDIR /app WORKDIR /app
RUN pnpm i -g turbo@^2 RUN pnpm i -g turbo@^2
COPY . . COPY . .
# Generate a partial monorepo with a pruned lockfile for a target workspace. # Temporarily skip prune for debugging
# Assuming "frontend" is the name entered in the project's package.json: { name: "frontend" } # RUN turbo prune frontend --docker
RUN turbo prune frontend --docker
# Add lockfile and package.json's of isolated subworkspace # Add lockfile and package.json's of isolated subworkspace
FROM base AS installer FROM base AS installer
@ -19,11 +17,9 @@ RUN apk update
RUN apk add --no-cache python3 make g++ gcc pkgconfig pixman cairo-dev libjpeg-turbo-dev pango-dev giflib-dev RUN apk add --no-cache python3 make g++ gcc pkgconfig pixman cairo-dev libjpeg-turbo-dev pango-dev giflib-dev
WORKDIR /app WORKDIR /app
# Add the commit hash
ARG GIT_REV ARG GIT_REV
ENV GIT_REV=${GIT_REV} ENV GIT_REV=${GIT_REV}
# Add the sentry auth token
ARG SENTRY_AUTH_TOKEN ARG SENTRY_AUTH_TOKEN
ENV SENTRY_AUTH_TOKEN=${SENTRY_AUTH_TOKEN} ENV SENTRY_AUTH_TOKEN=${SENTRY_AUTH_TOKEN}
@ -32,10 +28,13 @@ ENV NEXT_TELEMETRY_DISABLED=1
RUN pnpm i -g turbo@^2 RUN pnpm i -g turbo@^2
# First install the dependencies (as they change less often) # Install dependencies after copying pruned lockfile
COPY --from=builder /app/out/json/ . COPY --from=builder /app/out/json/ .
RUN pnpm install --frozen-lockfile --quiet RUN pnpm install --frozen-lockfile --quiet
# Debug step to verify pruned output
RUN ls -al /app/out/full
# Build the project # Build the project
COPY --from=builder /app/out/full/ . COPY --from=builder /app/out/full/ .
RUN pnpm turbo run build --filter=frontend... RUN pnpm turbo run build --filter=frontend...
@ -46,22 +45,22 @@ WORKDIR /app
ENV NODE_ENV=production ENV NODE_ENV=production
ENV NEXT_TELEMETRY_DISABLED=1 ENV NEXT_TELEMETRY_DISABLED=1
# Install runtime dependencies
RUN apk add --no-cache cairo pango libjpeg-turbo giflib RUN apk add --no-cache cairo pango libjpeg-turbo giflib
# Add the commit hash
ARG GIT_REV ARG GIT_REV
ENV GIT_REV=${GIT_REV} ENV GIT_REV=${GIT_REV}
# Debug to check .next output
RUN ls -al /app/apps/frontend/.next/standalone
# Don't run production as root # Don't run production as root
RUN addgroup --system --gid 1001 nodejs RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs RUN adduser --system --uid 1001 nextjs
USER nextjs USER nextjs
# Automatically leverage output traces to reduce image size # Copy build output
# https://nextjs.org/docs/advanced-features/output-file-tracing
COPY --from=installer --chown=nextjs:nodejs /app/apps/frontend/.next/standalone ./ COPY --from=installer --chown=nextjs:nodejs /app/apps/frontend/.next/standalone ./
COPY --from=installer --chown=nextjs:nodejs /app/apps/frontend/.next/static ./apps/frontend/.next/static COPY --from=installer --chown=nextjs:nodejs /app/apps/frontend/.next/static ./apps/frontend/.next/static
COPY --from=installer --chown=nextjs:nodejs /app/apps/frontend/public ./apps/frontend/public COPY --from=installer --chown=nextjs:nodejs /app/apps/frontend/public ./apps/frontend/public
CMD node apps/frontend/server.js CMD node apps/frontend/server.js

@ -2,11 +2,11 @@ import * as Sentry from "@sentry/nextjs";
export async function register() { export async function register() {
if (process.env.NEXT_RUNTIME === "nodejs") { if (process.env.NEXT_RUNTIME === "nodejs") {
await import("../sentry.server.config.js"); await import("../sentry.server.config");
} }
if (process.env.NEXT_RUNTIME === "edge") { if (process.env.NEXT_RUNTIME === "edge") {
await import("../sentry.edge.config.js"); await import("../sentry.edge.config");
} }
} }

@ -10,8 +10,8 @@
"noEmit": true, "noEmit": true,
"incremental": true, "incremental": true,
"esModuleInterop": true, "esModuleInterop": true,
"module": "NodeNext", "module": "ESNext",
"moduleResolution": "NodeNext", "moduleResolution": "Bundler",
"resolveJsonModule": true, "resolveJsonModule": true,
"isolatedModules": true, "isolatedModules": true,
"jsx": "preserve", "jsx": "preserve",