Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
|
@@ -1,4 +1,8 @@
|
|
| 1 |
FROM r8.im/fofr/expression-editor@sha256:bf913bc90e1c44ba288ba3942a538693b72e8cc7df576f3beebe56adc0a92b86
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
RUN apt-get update && apt-get install -y netcat jq
|
| 3 |
|
| 4 |
RUN useradd -m -u 1000 user
|
|
|
|
| 1 |
FROM r8.im/fofr/expression-editor@sha256:bf913bc90e1c44ba288ba3942a538693b72e8cc7df576f3beebe56adc0a92b86
|
| 2 |
+
# If using a Dockerfile, add before your app runs:
|
| 3 |
+
RUN pip install --upgrade gradio
|
| 4 |
+
# OR pin huggingface_hub:
|
| 5 |
+
RUN pip install "huggingface_hub>=0.23.0,<0.24.0"
|
| 6 |
RUN apt-get update && apt-get install -y netcat jq
|
| 7 |
|
| 8 |
RUN useradd -m -u 1000 user
|