Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -6,6 +6,6 @@ COPY ./requirements.txt /requirements.txt
|
|
6 |
|
7 |
RUN python3 -m pip install -r requirements.txt
|
8 |
|
9 |
-
COPY app.
|
10 |
|
11 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
6 |
|
7 |
RUN python3 -m pip install -r requirements.txt
|
8 |
|
9 |
+
COPY app.py .
|
10 |
|
11 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|