File size: 245 Bytes
e91104d
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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