Skip to content

Commit ed2bd51

Browse files
committed
fix
1 parent e7155de commit ed2bd51

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.dockerignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
!vite.config.ts
1919
!postcss.config.js
2020
!.yarn/releases
21-
!codex-ui
21+
!@codexteam/ui/
2222

2323
# Ignore unnecessary files inside allowed directories
2424
**/*~

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ RUN apk add --no-cache libc6-compat
44
WORKDIR /app
55
COPY package.json yarn.lock .yarnrc.yml ./
66
COPY .yarn/releases ./.yarn/releases
7-
COPY ./@codexteam/package.json @codexteam/
7+
COPY ./@codexteam/ui/package.json @codexteam/ui/
88
RUN yarn install
99

1010
FROM node:20-alpine AS builder
1111
WORKDIR /app
1212
COPY . .
1313
COPY --from=deps /app/node_modules ./node_modules
14-
COPY --from=deps /app/@codexteam/node_modules ./@codexteam/node_modules
14+
COPY --from=deps /app/@codexteam/ui/node_modules ./@codexteam/ui/node_modules
1515
RUN yarn build
1616

1717
FROM nginx:bullseye AS runner

0 commit comments

Comments
 (0)