Spaces:
Runtime error
Runtime error
Commit
·
1c7ed3e
1
Parent(s):
72c8505
To py3.8
Browse files- Dockerfile +6 -6
Dockerfile
CHANGED
@@ -42,12 +42,12 @@ RUN chmod 755 $WORKDIR
|
|
42 |
COPY requirements.txt $WORKDIR/requirements.txt
|
43 |
COPY oneformer $WORKDIR/oneformer
|
44 |
RUN python3.8 --version
|
45 |
-
RUN python3.8 -m pip install
|
46 |
-
RUN python3.8 -m pip install
|
47 |
-
RUN python3.8 -m pip install
|
48 |
-
RUN python3.8 -m pip install
|
49 |
-
RUN python3.8 -m pip install
|
50 |
-
RUN python3.8 -m pip install
|
51 |
|
52 |
COPY . .
|
53 |
|
|
|
42 |
COPY requirements.txt $WORKDIR/requirements.txt
|
43 |
COPY oneformer $WORKDIR/oneformer
|
44 |
RUN python3.8 --version
|
45 |
+
RUN python3.8 -m pip install --upgrade pip
|
46 |
+
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 . .
|
53 |
|