LLM-API / Dockerfile
lpetrl's picture
feat(API): Implemented basic API functionality.
7626706
raw
history blame contribute delete
306 Bytes
FROM python:3.9
COPY requirements.txt ./requirements.txt
RUN python -m pip install -U pip && \
python -m pip install -r requirements.txt && \
python -m pip cache purge
COPY ./src /app/src
COPY ./models /app/models
WORKDIR /app
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]