NPRC24 / OzUVGL /Dockerfile
Artyom
ozuvgl
1b5ee0e verified
raw
history blame
365 Bytes
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"]