From 497ffaf80886434a727cb02d32d5e2c8fd009bb0 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Thu, 7 May 2026 20:43:24 -0400 Subject: [PATCH] run in prod mode --- Containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Containerfile b/Containerfile index b757b9a..745c0d0 100644 --- a/Containerfile +++ b/Containerfile @@ -3,5 +3,6 @@ WORKDIR /app COPY package.json bun.lock ./ RUN bun install --frozen-lockfile COPY . . +ENV NODE_ENV=production EXPOSE 3000 CMD ["bun", "run", "src/index.ts"] -- 2.51.2