merge pull request #1 from DoellBarr/main

fixing Dockerfile
This commit is contained in:
levina 2021-09-10 13:18:21 +00:00 committed by GitHub
commit 438daebea6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@ FROM python:3.9.7-slim-buster
RUN apt-get update && apt-get upgrade -y && \ RUN apt-get update && apt-get upgrade -y && \
apt-get install -y nodejs \ apt-get install -y nodejs \
npm npm
RUN apt-get install npm RUN apt-get install npm -y
RUN apt-get install git curl python3-pip ffmpeg -y RUN apt-get install git curl python3-pip ffmpeg -y
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