QWEN_tryingout / Dockerfile
AbhinavPJ's picture
Update Dockerfile
241aa36 verified
raw
history blame contribute delete
286 Bytes
FROM python:3.10-slim
WORKDIR /code
ENV HF_HOME /tmp/cache
ENV TRANSFORMERS_CACHE /tmp/cache
ENV HF_HUB_CACHE /tmp/cache
RUN apt-get update && apt-get install -y git
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "app.py"]