Spaces:
Runtime error
Runtime error
Commit
·
451a436
1
Parent(s):
10b1799
Update dockerfile
Browse files- dockerfile +2 -2
dockerfile
CHANGED
@@ -10,7 +10,7 @@ COPY requirements.txt .
|
|
10 |
RUN pip install -r requirements.txt
|
11 |
|
12 |
#copying the entire project code to the container
|
13 |
-
COPY
|
14 |
|
15 |
#copying the model to the docker dir
|
16 |
COPY key_comp key_comp
|
@@ -19,4 +19,4 @@ COPY key_comp key_comp
|
|
19 |
EXPOSE 8000
|
20 |
|
21 |
# Run the FastAPI application
|
22 |
-
CMD ["uvicorn", "
|
|
|
10 |
RUN pip install -r requirements.txt
|
11 |
|
12 |
#copying the entire project code to the container
|
13 |
+
COPY main.py .
|
14 |
|
15 |
#copying the model to the docker dir
|
16 |
COPY key_comp key_comp
|
|
|
19 |
EXPOSE 8000
|
20 |
|
21 |
# Run the FastAPI application
|
22 |
+
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
|