Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -11,8 +11,9 @@ WORKDIR /code
|
|
11 |
#
|
12 |
|
13 |
#RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
14 |
-
RUN python launchUI.py
|
15 |
|
16 |
COPY . .
|
17 |
|
18 |
-
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
|
|
|
|
11 |
#
|
12 |
|
13 |
#RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
14 |
+
#RUN python launchUI.py
|
15 |
|
16 |
COPY . .
|
17 |
|
18 |
+
#CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
|
19 |
+
CMD [“python”, “./main.py”]
|