Add frontend build stage to Dockerfile
Add a stage for building the frontend web app in the Dockerfile.
This commit is contained in:
parent
c482c9fea2
commit
efcc7ebb32
1 changed files with 9 additions and 1 deletions
10
Dockerfile
10
Dockerfile
|
@ -15,11 +15,19 @@ RUN --mount=type=cache,id=pnpm,target=/pnpm/store \
|
|||
|
||||
RUN pnpm deploy --filter=@imput/cobalt-api --prod /prod/api
|
||||
|
||||
FROM base AS frontend
|
||||
WORKDIR /app/web
|
||||
COPY web /app/web
|
||||
|
||||
RUN pnpm install --frozen-lockfile
|
||||
RUN pnpm run build
|
||||
|
||||
FROM base AS api
|
||||
WORKDIR /app
|
||||
|
||||
COPY --from=build /prod/api /app
|
||||
COPY --from=build /app/.git /app/.git
|
||||
COPY --from=frontend /app/web/build /app/public
|
||||
|
||||
EXPOSE 9000
|
||||
CMD [ "node", "src/cobalt" ]
|
||||
CMD [ "node", "src/cobalt" ]
|
||||
|
|
Loading…
Reference in a new issue