Spaces:
Running
Running
desasparet
Browse files- Dockerfile +10 -0
Dockerfile
CHANGED
@@ -2,6 +2,16 @@ FROM python:3.10
|
|
2 |
|
3 |
WORKDIR /code
|
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
RUN pip install --no-cache-dir https://gradio-builds.s3.amazonaws.com/f4d696f71f3fc2f5fd8f9d5f5287cb1d27ef93d4/gradio-3.39.0-py3-none-any.whl
|
6 |
|
7 |
COPY . .
|
|
|
2 |
|
3 |
WORKDIR /code
|
4 |
|
5 |
+
RUN apt-get update && apt-get install -y \
|
6 |
+
git \
|
7 |
+
git-lfs \
|
8 |
+
ffmpeg \
|
9 |
+
libsm6 \
|
10 |
+
libxext6 \
|
11 |
+
cmake \
|
12 |
+
libgl1-mesa-glx \
|
13 |
+
&& rm -rf /var/lib/apt/lists/*
|
14 |
+
|
15 |
RUN pip install --no-cache-dir https://gradio-builds.s3.amazonaws.com/f4d696f71f3fc2f5fd8f9d5f5287cb1d27ef93d4/gradio-3.39.0-py3-none-any.whl
|
16 |
|
17 |
COPY . .
|