litserve / Dockerfile
moraxgiga's picture
Update Dockerfile
b945847 verified
raw
history blame contribute delete
243 Bytes
FROM python:3.11
WORKDIR /app
RUN mkdir -p /app/hf_cache
RUN chmod -R 777 /app/hf_cache
ENV HF_HOME=/app/hf_cache
COPY ./requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "server.py"]