This commit is contained in:
alorig
2025-11-18 05:03:27 +05:00
parent 342d9eab17
commit 40d379dd7e
35 changed files with 2073 additions and 0 deletions

17
sites/Dockerfile.dev Normal file
View File

@@ -0,0 +1,17 @@
# Sites Renderer Dev Image (Node 22 to satisfy Vite requirements)
FROM node:22-alpine
WORKDIR /app
# Copy package manifests first for better caching
COPY package*.json ./
RUN npm install
# Copy source (still bind-mounted at runtime, but needed for initial run)
COPY . .
EXPOSE 5176
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0", "--port", "5176"]