Finalize template

This commit is contained in:
Toni Koskinen
2026-03-26 13:45:33 +02:00
parent 1786acc75c
commit 4517620d9e
12 changed files with 158 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
FROM node:20-bookworm-slim
WORKDIR /app
RUN corepack enable
# Dependencies (from workspace root)
COPY package.json pnpm-lock.yaml ./
RUN pnpm install
# Monorepo structure
COPY nx.json tsconfig.base.json ./
COPY apps/web-app ./apps/web-app
COPY libs ./libs
ENV HOSTNAME=0.0.0.0
CMD ["pnpm", "nx", "serve", "web-app"]