From 75185b8f9977ddcf949fa60dab3c0d99aeaf8b43 Mon Sep 17 00:00:00 2001 From: Hieu Dang Date: Thu, 10 Aug 2023 00:25:46 +0700 Subject: [PATCH] update reduce docker size --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5ac78235..76d4d815 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,8 @@ ENV MEDIASOUP_SKIP_WORKER_PREBUILT_DOWNLOAD="true" COPY package.json . RUN \ - DEBIAN_FRONTEND=noninteractive apt update && \ - apt install -y --no-install-recommends build-essential python3-pip && \ + DEBIAN_FRONTEND=noninteractive apt-get update && \ + apt-get install -y --no-install-recommends build-essential python3-pip && \ npm install && \ apt-get -y purge --auto-remove build-essential python3-pip && \ apt-get install -y --no-install-recommends python3 && \