bshor commited on
Commit
b647f89
1 Parent(s): 7c4eca3

package changes

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -7,8 +7,9 @@ COPY --link --chown=1000 ./ /usr/src/app
7
  COPY . .
8
 
9
  # install dependcies
10
- # RUN conda install -y python=3.9 pandas numpy scikit-learn
11
- RUN conda install -y pandas numpy scikit-learn
 
12
  RUN pip install --no-cache-dir -r requirements.txt
13
 
14
  #if you need to download executable and run them switch to the default non-root user
 
7
  COPY . .
8
 
9
  # install dependcies
10
+ FROM continuumio/miniconda3:4.10.3 # Python 3.9
11
+ RUN conda install -y python=3.9 pandas numpy scikit-learn
12
+ # RUN conda install -y pandas numpy scikit-learn
13
  RUN pip install --no-cache-dir -r requirements.txt
14
 
15
  #if you need to download executable and run them switch to the default non-root user