This commit is contained in:
levina 2021-09-10 13:24:13 +07:00 committed by GitHub
parent 61a8143169
commit e0c8ba1a93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,9 +3,11 @@ FROM python:3.9
RUN apt update && apt upgrade -y RUN apt update && apt upgrade -y
RUN apt install python3-pip -y RUN apt install python3-pip -y
RUN apt install ffmpeg -y RUN apt install ffmpeg -y
RUN apt-get install npm
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -
RUN apt-get install -y nodejs RUN apt-get install -y nodejs
RUN npm install -g npm@7.22.0
RUN npm i -g npm RUN npm i -g npm
COPY . /py COPY . /py