CazimirRoman's picture
add cache dir
d005abf
raw
history blame
303 Bytes
FROM python:3.9-slim
WORKDIR /code
ENV TRANSFORMERS_CACHE=./cache/
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY ./app /code/app
COPY ./cache /code/cache
CMD ["uvicorn", "app.app:app", "--host", "0.0.0.0", "--port", "7860"]