NPRC24 / IVL /Dockerfile
Artyom
IVL
e91104d verified
# syntax=docker/dockerfile:1
FROM python:3.10-slim-buster
COPY requirements.txt .
RUN pip install --no-cache -r requirements.txt
RUN apt-get update
RUN apt-get install ffmpeg libsm6 libxext6 libopenblas-dev -y
COPY . /pipe24
WORKDIR /pipe24