From 404957e23bd81bffb0d7b5d89b08a621c11fa92b Mon Sep 17 00:00:00 2001 From: "David J. Malan" Date: Sun, 28 Jan 2024 19:14:48 -0500 Subject: [PATCH] tweaked library install --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index df7cbd5..e07c26d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -218,10 +218,11 @@ RUN apt update && \ # Install CS50 library RUN curl https://packagecloud.io/install/repositories/cs50/repo/script.deb.sh | bash && \ apt update && \ - apt install libcs50 + apt install --yes \ + libcs50 -# Install Docker +# Install Docker CLI # https://docs.docker.com/engine/install/ubuntu/ # https://docs.docker.com/engine/install/linux-postinstall/ RUN apt update && \