Files
profilarr/frontend/Dockerfile
santiagosayshey 123cefa6e8 chore(dev): Improve Vite hot reloading in Docker environment
- Add CHOKIDAR_USEPOLLING=true to frontend service environment
- Update Node.js version to 18 in frontend Dockerfile
- Create vite.config.js with usePolling option enabled
2025-02-05 16:09:58 +10:30

10 lines
129 B
Docker

FROM node:18
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]