eggie5-adyen commited on
Commit
984f571
1 Parent(s): 6e648e8

updated docker file w/ DS packages

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile CHANGED
@@ -14,6 +14,13 @@ COPY requirements.txt /app/
14
  # Install dependencies
15
  RUN pip install --no-cache-dir -r requirements.txt
16
 
 
 
 
 
 
 
 
17
  # Copy the FastAPI app code into the container
18
  COPY . /app
19
 
 
14
  # Install dependencies
15
  RUN pip install --no-cache-dir -r requirements.txt
16
 
17
+ # Install data science packages
18
+ RUN pip install --no-cache-dir \
19
+ pandas \
20
+ scikit-learn \
21
+ matplotlib \
22
+ seaborn
23
+
24
  # Copy the FastAPI app code into the container
25
  COPY . /app
26