asrvastava commited on
Commit
771c640
·
1 Parent(s): bc6b3f1
Files changed (1) hide show
  1. Dockerfile +16 -1
Dockerfile CHANGED
@@ -2,10 +2,25 @@ FROM python:3.9
2
 
3
  WORKDIR /code
4
 
5
- COPY HAR_API/requirements.txt /code/requirements.txt
6
 
7
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
8
  RUN pip install fastapi uvicorn
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
 
10
  COPY . .
11
 
 
2
 
3
  WORKDIR /code
4
 
5
+ COPY ./requirements.txt /code/requirements.txt
6
 
7
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
8
  RUN pip install fastapi uvicorn
9
+ RUN pip install joblib==1.3.2
10
+ RUN pip install numpy==1.26.2
11
+ RUN pip install packaging==23.2
12
+ RUN pip install pydantic==2.5.2
13
+ RUN pip install pydantic-core==2.14.5
14
+ RUN pip install scikeras==0.12.0
15
+ RUN pip install scikit-learn==1.3.2
16
+ RUN pip install scipy==1.11.4
17
+ RUN pip install sniffio==1.3.0
18
+ RUN pip install starlette==0.27.0
19
+ RUN pip install tensorflow-io-gcs-filesystem==0.31.0
20
+ RUN pip install threadpoolctl==3.2.0
21
+ RUN pip install typing-extensions==4.8.0
22
+ RUN pip install unicorn==2.0.1.post1
23
+
24
 
25
  COPY . .
26