Compare commits

..

2 Commits

Author SHA1 Message Date
3304962bf1 Merge remote-tracking branch 'origin/main' 2025-03-01 16:35:33 -05:00
02859a06a5 docker: don't copy lockfile 2025-03-01 16:35:24 -05:00

View File

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