Comment out Docker build stage and settings

Comment out build stage and related environment variables.
This commit is contained in:
Andras Bacsai
2025-10-13 11:33:41 +02:00
committed by GitHub
parent 83dc5aacab
commit 3e72950c9b

View File

@@ -10,11 +10,11 @@ RUN bun install --frozen-lockfile
# Now copy the rest of your source code # Now copy the rest of your source code
COPY . . 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 FROM build AS release
USER bun USER bun