From 7f6e80f9e79ecc2264b5c317898dc8f5b3c6ec8e Mon Sep 17 00:00:00 2001 From: Yuzu Date: Wed, 2 Feb 2022 22:07:33 +0700 Subject: [PATCH] Switched to debian --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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