eroha-agentapi / Dockerfile
Yermek68's picture
Update Dockerfile
b5ca1ec verified
raw
history blame
302 Bytes
FROM python:3.10-slim
RUN apt-get update && apt-get install -y git ffmpeg libsm6 libxext6
WORKDIR /app
COPY . /app
RUN pip install --upgrade pip && pip install -r requirements.txt \
&& pip install "huggingface-hub==0.23.4" "transformers==4.46.0" "torch==2.4.1"
EXPOSE 7860
CMD ["python", "app.py"]