diff --git a/Dockerfile b/Dockerfile index 8f2a774..2e61e51 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ FROM nikolaik/python-nodejs:python3.10-nodejs17 -RUN apt-get update && apt-get upgrade -y -RUN apt-get install ffmpeg -y +RUN apt update && apt upgrade -y +RUN apt install -y ffmpeg python3-pip COPY . /py WORKDIR /py RUN pip3 install -U pip RUN pip3 install -U -r requirements.txt -CMD python3 -m program +CMD ["python3", "main.py"]