api / Dockerfile
zhzabcd's picture
Update Dockerfile
19c9120 verified
raw
history blame contribute delete
130 Bytes
FROM adryfish/llm-web-api AS bulid
FROM python:3.9 AS web
RUN pip install flask
USER root
RUN chmod +x main.py
CMD python main.py