From 3e72950c9bec4922668f920b6efafc2dc99280b1 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Mon, 13 Oct 2025 11:33:41 +0200 Subject: [PATCH] Comment out Docker build stage and settings Comment out build stage and related environment variables. --- bun/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bun/Dockerfile b/bun/Dockerfile index ae3d97a..9696e58 100644 --- a/bun/Dockerfile +++ b/bun/Dockerfile @@ -10,11 +10,11 @@ RUN bun install --frozen-lockfile # Now copy the rest of your source code COPY . . -FROM base AS build +#FROM base AS build -ENV NODE_ENV=production +#ENV NODE_ENV=production -RUN bun run build +#RUN bun run build FROM build AS release USER bun