API: - Add python symlink (python3-slim has no bare 'python') so uv doesn't invalidate the baked venv on every container start - Copy src/ before uv sync so hatchling installs rehearsalhub as a proper editable install (.pth pointing to /app/src) — previously sync ran with no source present, producing a broken empty wheel - Remove ENV PYTHONPATH workaround (no longer needed with correct install) - Add --reload-dir /app/src to scope uvicorn's file watcher to the mounted source directory Web: - Add COPY . . after npm install so index.html and vite.config.ts are baked into the image — without them Vite ignored port config and fell back to 5173 with no entry point Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
583 B
Docker
22 lines
583 B
Docker
FROM node:20-alpine AS development
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
RUN npm install --legacy-peer-deps
|
|
COPY . .
|
|
# ./web/src is mounted as a volume at runtime for HMR; everything else comes from the image
|
|
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]
|
|
|
|
FROM node:20-alpine AS builder
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
RUN npm install --legacy-peer-deps
|
|
COPY . .
|
|
RUN npm run check
|
|
RUN npm run build
|
|
|
|
FROM nginx:alpine AS production
|
|
COPY --from=builder /app/dist /usr/share/nginx/html
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"]
|