mirror of
https://github.com/rachelos/we-mp-rss.git
synced 2026-09-01 15:33:05 +08:00
a02da2d6aa
- add docker compose services for backend and frontend development\n- expand backend reload paths so source changes take effect without rebuilding images
8 lines
194 B
Docker
8 lines
194 B
Docker
FROM node:20.18.3-bookworm-slim
|
|
|
|
WORKDIR /app/web_ui
|
|
COPY web_ui/package.json web_ui/package-lock.json ./
|
|
RUN npm install
|
|
|
|
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0", "--port", "5173"]
|