Make a lighter docker image of python-nodejs

This commit is contained in:
Hunter XDD 2021-10-29 22:08:40 +05:30 committed by GitHub
parent f3b99fc5d0
commit c565666137
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,19 +1,8 @@
FROM python:3.9.7-slim-buster
RUN apt-get update && apt-get upgrade -y && \
apt-get install -y nodejs \
npm
RUN apt-get install npm -y
RUN apt-get install git curl python3-pip ffmpeg -y
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -
RUN apt-get install -y nodejs
RUN npm install -g npm@7.22.0
RUN npm i -g npm
FROM nikolaik/python-nodejs:python3.10-nodejs17
RUN apt-get update && apt-get upgrade -y
RUN apt-get install ffmpeg -y
COPY . /py
WORKDIR /py
RUN pip3 install --upgrade pip
RUN pip3 install -r requirements.txt
RUN pip3 install -U pip
RUN pip3 install -U -r requirements.txt
CMD python3 -m program