Refactor: remove lockfile usage from Docker

Co-authored-by: gpt-5.4 <no-reply@openai.com>
This commit is contained in:
2026-04-02 18:08:05 -07:00
parent 76efbc6334
commit 70de72773a

View File

@@ -1,7 +1,7 @@
FROM oven/bun:1-slim
WORKDIR /app
COPY package.json bun.lock* ./
RUN bun install --frozen-lockfile --production
COPY package.json ./
RUN bun install --production --no-save
COPY . .
EXPOSE 3000
CMD ["bun", "run", "index.js"]