feat: docker config for new frontend
This commit is contained in:
parent
c6eba5b51a
commit
bb2fa55cd5
9 changed files with 54 additions and 23 deletions
17
Foxnouns.Frontend/Dockerfile
Normal file
17
Foxnouns.Frontend/Dockerfile
Normal file
|
@ -0,0 +1,17 @@
|
|||
FROM docker.io/node:22-slim
|
||||
|
||||
ENV PNPM_HOME="/pnpm"
|
||||
ENV PATH="$PNPM_HOME:$PATH"
|
||||
RUN corepack enable
|
||||
|
||||
COPY ./Foxnouns.Frontend /app
|
||||
COPY ./docker/frontend.env /app/.env.local
|
||||
WORKDIR /app
|
||||
|
||||
ENV PRIVATE_API_HOST=http://rate:5003/api
|
||||
ENV PRIVATE_INTERNAL_API_HOST=http://backend:5000/api
|
||||
|
||||
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
|
||||
RUN pnpm run build
|
||||
|
||||
CMD ["pnpm", "node", "build/index.js"]
|
Loading…
Add table
Add a link
Reference in a new issue