free-llm / Dockerfile
gingdev's picture
add support for huggingface
ef3aee7
raw
history blame contribute delete
No virus
154 Bytes
FROM python:latest
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
ENTRYPOINT [ "uvicorn" ]
CMD [ "app.main:app", "--host", "0.0.0.0" ]