From eaa119e435ed0ceae1a466aac6900792d7c08f89 Mon Sep 17 00:00:00 2001 From: MR NIMA <108072422+DarkMakerofc@users.noreply.github.com> Date: Thu, 8 Jun 2023 17:24:48 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20=F0=9D=99=BE=F0=9D=99=BF?= =?UTF-8?q?=F0=9D=99=B4=F0=9D=99=BD=20=F0=9D=99=B0=F0=9D=99=B8=20?= =?UTF-8?q?=F0=9D=99=B2=F0=9D=99=B7=F0=9D=99=B0=F0=9D=9A=83=F0=9D=99=B6?= =?UTF-8?q?=F0=9D=99=BF=F0=9D=9A=83=20=F0=9D=99=B1=F0=9D=99=BE=F0=9D=9A=83?= =?UTF-8?q?=20=F0=9F=A4=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..de1f7ba --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +FROM node:lts-buster + +RUN apt-get update && \ + apt-get install -y \ + ffmpeg \ + imagemagick \ + webp && \ + apt-get upgrade -y && \ + rm -rf /var/lib/apt/lists/* + +COPY package.json . + +RUN npm install + +COPY . . + +CMD ["node", "."]