docker: don't copy lockfile

This commit is contained in:
Aidan 2025-03-01 16:35:24 -05:00
parent 5bf0872ba9
commit 02859a06a5

View File

@ -1,6 +1,6 @@
FROM oven/bun:latest
WORKDIR /app
COPY package.json bun.lockb ./
COPY package.json ./
RUN bun install
COPY . .
CMD ["bun", "run", "index.js"]