WissamH commited on
Commit
941ae21
·
verified ·
1 Parent(s): 278ee4f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -2,9 +2,9 @@ FROM python:3.10
2
 
3
  WORKDIR /app
4
 
5
- COPY requirements.txt requirements.txt
6
 
7
- RUN pip install -r requirements.txt
8
 
9
  COPY . .
10
 
 
2
 
3
  WORKDIR /app
4
 
5
+ COPY requirements-dashboard.txt requirements-dashboard.txt
6
 
7
+ RUN pip install -r requirements-dashboard.txt
8
 
9
  COPY . .
10