Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -5,6 +5,6 @@ RUN pip install --upgrade pip
|
|
5 |
RUN pip install gradio
|
6 |
RUN pip install --no-cache-dir --upgrade gradio
|
7 |
|
8 |
-
COPY .
|
9 |
|
10 |
-
CMD ["python3 app.py"]
|
|
|
5 |
RUN pip install gradio
|
6 |
RUN pip install --no-cache-dir --upgrade gradio
|
7 |
|
8 |
+
COPY . /code
|
9 |
|
10 |
+
CMD ["python3 /code/app.py"]
|