File size: 365 Bytes
1b5ee0e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
FROM python:3.10
RUN apt-get update && apt-get install -y \
build-essential \
ffmpeg \
libsm6 \
libxext6 \
&& rm -rf /var/lib/apt/lists/*
RUN pip install numpy scipy
COPY requirements.txt /npr-vgl-ozu/
WORKDIR /npr-vgl-ozu
RUN python -m pip install --no-cache-dir -r requirements.txt
COPY . /npr-vgl-ozu
RUN chmod +x run.sh
CMD ["./run.sh"] |