hf-llm-api / Dockerfile
dsqe's picture
Update Dockerfile
f5143a5 verified
raw
history blame contribute delete
No virus
276 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
RUN mkdir -p /.cache && chmod -R 777 /.cache
# VOLUME /data
EXPOSE 23333
CMD ["python", "-m", "apis.chat_api"]