NewAssisstant / Dockerfile
mohammedfouly's picture
Update Dockerfile
aa19a86 verified
raw
history blame contribute delete
228 Bytes
FROM python:3.10
WORKDIR /app
COPY . /app
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt
ENV TRANSFORMERS_CACHE=/tmp/hf_cache
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]