Skip to content

Commit

Permalink
ci: fix dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
dec0dOS committed Oct 4, 2023
1 parent 4ae93f9 commit bc99b5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/zero-ui/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ WORKDIR /app/
COPY --link tsconfig.json package.json yarn.lock* .yarnrc.yml ./
COPY --link .yarn/ ./.yarn
WORKDIR /app/frontend
COPY --link ./frontend/package.json /app/frontend
COPY --link ./frontend/package*.json /app/frontend
RUN yarn workspaces focus frontend
COPY --link ./frontend /app/frontend
RUN yarn build
Expand All @@ -23,7 +23,7 @@ WORKDIR /app/
COPY --link package.json yarn.lock* .yarnrc.yml ./
COPY --link .yarn/ ./.yarn
WORKDIR /app/backend
COPY --link ./backend/package.json /app/backend
COPY --link ./backend/package*.json /app/backend
RUN yarn workspaces focus --production backend && yarn cache clean

COPY --link ./backend /app/backend
Expand Down

0 comments on commit bc99b5e

Please sign in to comment.