CazimirRoman's picture
change path for cache
ef642ff
raw
history blame
307 Bytes
FROM python:3.9-slim
WORKDIR /code
ENV TRANSFORMERS_CACHE=./code/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"]