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