Skip to content

Commit

Permalink
🐞 fix (App Frontend): rm bunfig.toml
Browse files Browse the repository at this point in the history
branch: main
  • Loading branch information
Strehk committed May 17, 2024
1 parent 780a7ee commit 0e94d3b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.chase.backend
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.chase.backend.db-migration
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.chase.frontend
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
1 change: 0 additions & 1 deletion bunfig.toml

This file was deleted.

0 comments on commit 0e94d3b

Please sign in to comment.