File size: 350 Bytes
46f8dfe
227e456
36f3374
227e456
36f3374
46f8dfe
36f3374
227e456
22b00f2
36f3374
227e456
36f3374
 
22b00f2
46f8dfe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM pytorch/pytorch:2.1.2-cuda11.8-cudnn8-runtime

ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update && apt-get install -y \
    git ffmpeg libsndfile1 python3-dev \
    && rm -rf /var/lib/apt/lists/*

COPY requirements.txt .
RUN pip install --upgrade pip && pip install -r requirements.txt

COPY . /app
WORKDIR /app

CMD ["python3", "app.py"]