praeclarumjj3 commited on
Commit
b202b22
1 Parent(s): 1c7ed3e
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -17,6 +17,7 @@ RUN add-apt-repository ppa:deadsnakes/ppa
17
  RUN apt-get -y install python3.8
18
  RUN apt-get -y install python3-pip
19
  RUN apt install -y python3.8-distutils
 
20
 
21
  RUN useradd -ms /bin/bash admin
22
  USER admin
@@ -47,6 +48,7 @@ RUN python3.8 -m pip install multidict
47
  RUN python3.8 -m pip install typing-extensions
48
  RUN python3.8 -m pip install --upgrade setuptools
49
  RUN python3.8 -m pip install gradio --no-cache-dir
 
50
  RUN python3.8 -m pip install --no-cache-dir --upgrade -r $WORKDIR/requirements.txt
51
 
52
  COPY . .
 
17
  RUN apt-get -y install python3.8
18
  RUN apt-get -y install python3-pip
19
  RUN apt install -y python3.8-distutils
20
+ RUN apt-get install -y gcc
21
 
22
  RUN useradd -ms /bin/bash admin
23
  USER admin
 
48
  RUN python3.8 -m pip install typing-extensions
49
  RUN python3.8 -m pip install --upgrade setuptools
50
  RUN python3.8 -m pip install gradio --no-cache-dir
51
+ RUN python3.8 -m pip install cython
52
  RUN python3.8 -m pip install --no-cache-dir --upgrade -r $WORKDIR/requirements.txt
53
 
54
  COPY . .