Spaces:
Runtime error
Runtime error
mhamilton723
commited on
Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -4,9 +4,9 @@ FROM mhamilton723/featup:latest
|
|
4 |
# Set a working directory
|
5 |
WORKDIR /app
|
6 |
|
7 |
-
RUN git clone https://github.com/mhamilton723/DenseAV
|
8 |
-
cd DenseAV
|
9 |
-
pip3 install -e
|
10 |
pip3 install gradio
|
11 |
|
12 |
# Copy your application files into the container
|
|
|
4 |
# Set a working directory
|
5 |
WORKDIR /app
|
6 |
|
7 |
+
RUN git clone https://github.com/mhamilton723/DenseAV &&\
|
8 |
+
cd DenseAV &&\
|
9 |
+
pip3 install -e . &&\
|
10 |
pip3 install gradio
|
11 |
|
12 |
# Copy your application files into the container
|