Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -8,10 +8,10 @@ COPY requirements.txt .
|
|
8 |
RUN pip install --no-cache-dir -r requirements.txt
|
9 |
|
10 |
# copy app
|
11 |
-
COPY app ./app
|
12 |
|
13 |
# expose Gradio default port
|
14 |
EXPOSE 7860
|
15 |
|
16 |
# launch with unbuffered output
|
17 |
-
CMD ["python", "-u", "app
|
|
|
8 |
RUN pip install --no-cache-dir -r requirements.txt
|
9 |
|
10 |
# copy app
|
11 |
+
#COPY app ./app
|
12 |
|
13 |
# expose Gradio default port
|
14 |
EXPOSE 7860
|
15 |
|
16 |
# launch with unbuffered output
|
17 |
+
CMD ["python", "-u", "app.py"]
|