diff --git a/Dockerfile.chase.backend b/Dockerfile.chase.backend index 4fd5d213..6a4c1c76 100644 --- a/Dockerfile.chase.backend +++ b/Dockerfile.chase.backend @@ -4,7 +4,7 @@ # this will cache them and speed up future builds FROM oven/bun:latest AS install RUN mkdir -p /temp/dev -COPY package.json bun.lockb bunfig.toml /temp/dev/ +COPY package.json bun.lockb /temp/dev/ COPY chase/backend/package.json /temp/dev/chase/backend/package.json COPY chase/frontend/package.json /temp/dev/chase/frontend/package.json RUN cd /temp/dev && bun install --frozen-lockfile diff --git a/Dockerfile.chase.backend.db-migration b/Dockerfile.chase.backend.db-migration index 5298342c..94984d39 100644 --- a/Dockerfile.chase.backend.db-migration +++ b/Dockerfile.chase.backend.db-migration @@ -2,7 +2,7 @@ # this will cache them and speed up future builds FROM oven/bun:latest AS install RUN mkdir -p /temp/dev -COPY package.json bun.lockb bunfig.toml /temp/dev/ +COPY package.json bun.lockb /temp/dev/ COPY chase/backend/package.json /temp/dev/chase/backend/package.json COPY chase/frontend/package.json /temp/dev/chase/frontend/package.json RUN cd /temp/dev/chase/backend && bun install @prisma/client diff --git a/Dockerfile.chase.frontend b/Dockerfile.chase.frontend index ca636bb8..27154864 100644 --- a/Dockerfile.chase.frontend +++ b/Dockerfile.chase.frontend @@ -1,5 +1,5 @@ FROM oven/bun:latest AS install -COPY package.json bun.lockb bunfig.toml /temp/dev/ +COPY package.json bun.lockb /temp/dev/ COPY chase/backend/package.json /temp/dev/chase/backend/package.json COPY chase/frontend/package.json /temp/dev/chase/frontend/package.json RUN cd /temp/dev && bun install --frozen-lockfile @@ -18,7 +18,7 @@ RUN cd chase/frontend && bun run build # unfortunately we need a nextjs installation at runtime FROM oven/bun:latest AS nextjs WORKDIR /app/staging -COPY package.json bun.lockb bunfig.toml /app/staging/ +COPY package.json bun.lockb /app/staging/ COPY chase/backend/package.json /app/staging/chase/backend/package.json COPY chase/frontend/package.json /app/staging/chase/frontend/package.json RUN cd /app/staging/chase/frontend && bun install next diff --git a/bunfig.toml b/bunfig.toml deleted file mode 100644 index 4a9291df..00000000 --- a/bunfig.toml +++ /dev/null @@ -1 +0,0 @@ -bunfig.toml \ No newline at end of file