iAura_1 / Dockerfile
akpande2's picture
Update Dockerfile
0aaafb1 verified
raw
history blame contribute delete
323 Bytes
FROM pytorch/pytorch:2.1.0-cuda11.8-cudnn8-runtime
RUN apt-get update && apt-get install -y \
ffmpeg \
libsndfile1 \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY pipeline.py .
COPY main.py .
EXPOSE 7860
CMD ["python", "main.py"]