File size: 315 Bytes
1c15792
80287e2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46006c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM nikolaik/python-nodejs:python3.10-nodejs20

RUN apt-get update \
    && apt-get install -y --no-install-recommends ffmpeg \
    && apt-get clean \
    && rm -rf /var/lib/apt/lists/*

COPY . /app/


WORKDIR /app/

RUN pip3 install --no-cache-dir -U -r requirements.txt

RUN chmod +x start

CMD ["bash", "start"]