fix: stop using lockfile for builds

This commit is contained in:
Aidan 2025-02-19 21:37:16 -05:00
parent 7c488ef038
commit 969787a7e5

View File

@ -1,8 +1,7 @@
FROM oven/bun:1 AS base
WORKDIR /app
COPY package.json ./
COPY bun.lockb ./
RUN bun install --frozen-lockfile
RUN bun install
COPY . .
RUN bunx prisma migrate dev --name init
RUN bun run build