praeclarumjj3 commited on
Commit
35e1fbf
·
1 Parent(s): 76be483

Install multidict

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -11,7 +11,7 @@ RUN apt-get update && apt-get install -y \
11
  && rm -rf /var/lib/apt/lists/*
12
 
13
  RUN apt-get -y update
14
- RUN apt-get -y install python3.8
15
  RUN apt-get -y install python3-pip
16
 
17
  RUN useradd -ms /bin/bash admin
@@ -38,6 +38,7 @@ RUN chmod 755 $WORKDIR
38
  COPY requirements.txt $WORKDIR/requirements.txt
39
  COPY oneformer $WORKDIR/oneformer
40
 
 
41
  RUN pip3 install gradio --no-cache-dir
42
  RUN pip3 install --no-cache-dir --upgrade -r $WORKDIR/requirements.txt
43
 
 
11
  && rm -rf /var/lib/apt/lists/*
12
 
13
  RUN apt-get -y update
14
+ RUN apt-get -y install python3.8.15
15
  RUN apt-get -y install python3-pip
16
 
17
  RUN useradd -ms /bin/bash admin
 
38
  COPY requirements.txt $WORKDIR/requirements.txt
39
  COPY oneformer $WORKDIR/oneformer
40
 
41
+ RUN pip3 install multidict
42
  RUN pip3 install gradio --no-cache-dir
43
  RUN pip3 install --no-cache-dir --upgrade -r $WORKDIR/requirements.txt
44