Commit
·
9f53601
1
Parent(s):
13f4dca
fix dockerfile user issue (3)
Browse files- Dockerfile +2 -3
Dockerfile
CHANGED
@@ -15,9 +15,8 @@ RUN apt-get update && apt-get install -y imagemagick && sed -i '91d' /etc/ImageM
|
|
15 |
RUN pip install --no-cache-dir -r requirements.txt
|
16 |
|
17 |
# Make port 8000 available to the world outside this container
|
18 |
-
EXPOSE
|
19 |
|
20 |
-
|
21 |
-
CMD ["python", "main.py"]
|
22 |
|
23 |
USER 1001
|
|
|
15 |
RUN pip install --no-cache-dir -r requirements.txt
|
16 |
|
17 |
# Make port 8000 available to the world outside this container
|
18 |
+
EXPOSE 7680
|
19 |
|
20 |
+
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
21 |
|
22 |
USER 1001
|