Skip to content

Commit

Permalink
fix: docker web build
Browse files Browse the repository at this point in the history
  • Loading branch information
kriptonian1 committed Feb 24, 2024
1 parent aefe092 commit e0d0c12
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions apps/web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ WORKDIR /app

RUN npm i -g pnpm

COPY package.json .
# COPY package.json .
COPY turbo.json .

RUN pnpm install
COPY pnpm-workspace.yaml .
COPY pnpm-lock.yaml .
COPY package*.json .
COPY ./packages ./packages

COPY apps/web/package.json apps/web/package.json
COPY apps/web/tsconfig.json apps/web/tsconfig.json

RUN cd apps/web && pnpm install

RUN pnpm install

COPY . .
Expand Down

0 comments on commit e0d0c12

Please sign in to comment.