diff --git a/Dockerfile b/Dockerfile index fadd0ba..92ea1f6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,15 @@ -FROM ubuntu +FROM debian RUN mkdir -p /home/node/app/node_modules WORKDIR /home/node/app COPY package*.json ./ COPY prisma ./prisma/ + +RUN DEBIAN_FRONTEND=noninteractive RUN apt-get update -y -RUN apt-get -y install curl gnupg git python2 make g++ iputils-ping +RUN apt-get -y install curl gnupg git python2 make g++ iputils-ping ffmpeg RUN curl -sL https://deb.nodesource.com/setup_17.x | bash - RUN apt-get -y install nodejs