diff --git a/Containerfile b/Containerfile --- a/Containerfile +++ b/Containerfile @@ -3,5 +3,6 @@ COPY package.json bun.lock ./ RUN bun install --frozen-lockfile COPY . . +ENV NODE_ENV=production EXPOSE 3000 CMD ["bun", "run", "src/index.ts"]