This commit is contained in:
Hunter XDD 2021-10-30 09:58:00 +05:30 committed by GitHub
parent acb6b1e556
commit 2540fbc759
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,8 +1,8 @@
FROM nikolaik/python-nodejs:python3.9-nodejs17 FROM nikolaik/python-nodejs:python3.9-nodejs17
RUN apt update && apt upgrade -y RUN apt-get update && apt-get upgrade -y
RUN apt install -y ffmpeg RUN apt-get install ffmpeg -y
COPY . /py COPY . /py
WORKDIR /py WORKDIR /py
RUN pip3 install -U pip RUN pip3 install -U pip
RUN pip3 install -U -r requirements.txt RUN pip3 install -U -r requirements.txt
CMD ["python3", "main.py"] CMD ["python3", "-m", "program"]