From 89a6737142960cabbc39eb61cac6a5d2bd0e0f90 Mon Sep 17 00:00:00 2001 From: duongcamcute Date: Thu, 15 Jan 2026 23:39:04 +0700 Subject: [PATCH] Fix: Add missing FROM base AS runner to fix circular dependency --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 3110e4b..264f848 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,6 +23,7 @@ ENV NEXT_TELEMETRY_DISABLED 1 RUN npm run build # Production image, copy all the files and run next +FROM base AS runner # Install OpenSSL (required for Prisma) and Prisma CLI globally directly as root # Install su-exec for user switching RUN apk add --no-cache openssl su-exec && \