MANHWA123 / Dockerfile
YOUKKASS's picture
Upload 4 files
8ba5771 verified
raw
history blame contribute delete
438 Bytes
FROM python:3.10-slim
RUN apt-get update && apt-get install -y \
git ffmpeg libsm6 libxext6 libgl1 \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV HF_HOME=/tmp/hf \
XDG_CACHE_HOME=/tmp/.cache \
TRANSFORMERS_CACHE=/tmp/transformers \
MPLCONFIGDIR=/tmp/matplotlib \
PYTHONUNBUFFERED=1
EXPOSE 7860
CMD ["python", "app.py"]