update docker file

This commit is contained in:
2025-11-09 22:46:32 +03:00
parent c46f899e10
commit 78eef4c462
4 changed files with 10 additions and 99 deletions

View File

@@ -1,29 +0,0 @@
version: '3.8'
services:
dashboard-app-dev:
build:
context: .
dockerfile: Dockerfile
ports:
- '3011:3000'
volumes:
# Mount source code for hot reloading
- .:/app
# Exclude node_modules to use container's version
- /app/node_modules
environment:
- NODE_ENV=development
- CHOKIDAR_USEPOLLING=true
- WATCHPACK_POLLING=true
- REACT_APP_API_URL=${REACT_APP_API_URL:-https://amazon.fascano.com}
env_file:
- .env.develop
stdin_open: true
tty: true
networks:
- dashboard-network
networks:
dashboard-network:
driver: bridge