From 83dc5aacabcdb564fa2978f3fbc51112ad85f0eb Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Mon, 13 Oct 2025 11:31:37 +0200 Subject: [PATCH] Update Dockerfile --- bun/Dockerfile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/bun/Dockerfile b/bun/Dockerfile index 324f177..ae3d97a 100644 --- a/bun/Dockerfile +++ b/bun/Dockerfile @@ -12,15 +12,9 @@ COPY . . FROM base AS build -# Declare the build argument -ARG SOURCE_COMMIT -# Set the environment variable using the build argument -ENV SOURCE_COMMIT=${SOURCE_COMMIT} - ENV NODE_ENV=production -# Run build script -# RUN bun run build +RUN bun run build FROM build AS release USER bun