update dockerfile

This commit is contained in:
2026-08-31 14:24:03 +00:00
parent fe225f8a3d
commit 07f6a77fc6
7 changed files with 2453 additions and 351 deletions

View File

@@ -7,7 +7,9 @@ RUN bun run build
FROM oven/bun
WORKDIR /app
COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/build ./build
COPY package.json ./
EXPOSE 3000
ENV NODE_ENV=production
CMD ["bun", "build/index.js"]