Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
FROM adryfish/llm-web-api AS bulid
|
| 2 |
FROM python:3.9 AS web
|
| 3 |
RUN pip install flask
|
|
|
|
| 4 |
RUN chmod +x main.py
|
| 5 |
CMD python main.py
|
|
|
|
| 1 |
FROM adryfish/llm-web-api AS bulid
|
| 2 |
FROM python:3.9 AS web
|
| 3 |
RUN pip install flask
|
| 4 |
+
USER root
|
| 5 |
RUN chmod +x main.py
|
| 6 |
CMD python main.py
|