Skip to content

Commit

Permalink
Merge pull request #1103 from sundowndev/fix/dockerfile
Browse files Browse the repository at this point in the history
Fix client path in dockerfile
  • Loading branch information
sundowndev authored Jul 26, 2022
2 parents fb98d99 + eb057c3 commit 96796c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM node:15.11.0-alpine AS client_builder

WORKDIR /app

COPY ./client .
COPY ./web/client .
RUN yarn install --immutable
RUN yarn build
RUN yarn cache clean
Expand All @@ -13,7 +13,7 @@ WORKDIR /app

RUN apk add --update --no-cache git make bash
COPY . .
COPY --from=client_builder /app/dist ./client/dist
COPY --from=client_builder /app/dist ./web/client/dist
RUN go get -v -t -d ./...
RUN make install-tools
RUN make build
Expand Down

0 comments on commit 96796c1

Please sign in to comment.