Compare commits

..

No commits in common. "160bd1ddb0c7e7e92877da197edcdc39d41d7aa0" and "526482fc9f3ee6561c085214b079c1d909522eec" have entirely different histories.

View File

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