From 707b6ec6af920747f37ea5f6d548d447f8b6724e Mon Sep 17 00:00:00 2001 From: Malte Grosse Date: Mon, 18 Mar 2024 15:12:21 +0900 Subject: [PATCH] fix --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f4662f6..cd83285 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,8 @@ ARG NB_GID="100" ENV CONDA_CUDA_OVERRIDE="12.1" ENV NUM_GPUS=1 USER root -RUN apt-get install --yes --no-install-recommends \ +RUN apt-get update --yes && \ + apt-get install --yes --no-install-recommends \ ffmpeg \ libportaudio2 \ apt-get clean && rm -rf /var/lib/apt/lists/*