File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -12,20 +12,21 @@ WORKDIR /usr/src/app
12
12
RUN pnpm install --frozen-lockfile
13
13
RUN pnpm run -r build
14
14
RUN pnpm deploy --filter=agent-api --prod /prod/api
15
+ RUN pnpm deploy --filter=agent-shell --prod /prod/shell
15
16
# RUN pnpm deploy --filter=cli --prod /prod/cli
16
17
17
18
FROM base AS api
19
+ # environment file
18
20
COPY --from=build /usr/src/app/.env /prod/api/
21
+ # api bits
19
22
COPY --from=build /prod/api /prod/api
23
+ # rendering bits
24
+ COPY --from=build /prod/shell /prod/shell
20
25
WORKDIR /prod/api
21
26
22
27
RUN apt-get update
23
28
RUN apt install -y gnome-keyring
24
29
25
- # COPY ../shell/out/renderer /app/wwwroot
26
- # COPY --from=prod-deps /app/node_modules /app/node_modules
27
- # COPY --from=build /app/dist /app/dist
28
-
29
30
EXPOSE 80:3000
30
31
EXPOSE 8080:3000
31
32
EXPOSE 443:3443
You can’t perform that action at this time.
0 commit comments