bshor commited on
Commit
80e9072
·
1 Parent(s): b647f89

package changes

Browse files
Files changed (2) hide show
  1. Dockerfile +4 -1
  2. requirements.txt +0 -1
Dockerfile CHANGED
@@ -7,9 +7,12 @@ COPY --link --chown=1000 ./ /usr/src/app
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
 
7
  COPY . .
8
 
9
  # install dependcies
10
+ FROM continuumio/miniconda3:4.10.3
11
  RUN conda install -y python=3.9 pandas numpy scikit-learn
12
  # RUN conda install -y pandas numpy scikit-learn
13
+
14
+ RUN pip install --upgrade setuptools
15
+
16
  RUN pip install --no-cache-dir -r requirements.txt
17
 
18
  #if you need to download executable and run them switch to the default non-root user
requirements.txt CHANGED
@@ -1,6 +1,5 @@
1
  gradio
2
  gradio_molecule3d
3
- setuptools==59.5.0
4
  lightning==2.*
5
  biopython==1.79
6
  numpy==1.21
 
1
  gradio
2
  gradio_molecule3d
 
3
  lightning==2.*
4
  biopython==1.79
5
  numpy==1.21