hf-llm-api / Dockerfile
dongsiqie's picture
Create Dockerfile
46125f0 verified
raw
history blame
No virus
216 Bytes
FROM python:3.11
RUN apt update
RUN apt install git
RUN git clone https://github.com/Hansimov/hf-llm-api.git /app
WORKDIR "/app"
RUN pip install -r requirements.txt
EXPOSE 23333
CMD ["python", "-m", "apis.chat_api"]