mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-20 20:47:50 -05:00
- 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
10 lines
129 B
Docker
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"] |