Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +4 -2
Dockerfile
CHANGED
@@ -8,5 +8,7 @@ COPY . .
|
|
8 |
|
9 |
# Install any needed packages specified in requirements.txt
|
10 |
RUN pip install -r requirements.txt
|
11 |
-
|
12 |
-
|
|
|
|
|
|
8 |
|
9 |
# Install any needed packages specified in requirements.txt
|
10 |
RUN pip install -r requirements.txt
|
11 |
+
|
12 |
+
|
13 |
+
# Run app.py when the container launches
|
14 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|