From ff478e563e58f154167b3ada2561674265e13ed9 Mon Sep 17 00:00:00 2001 From: jmcarcell Date: Sun, 11 Aug 2024 11:37:42 +0200 Subject: [PATCH] Install python packages with apt for Ubuntu 24 --- Docker/ubuntu24/ubuntu24-build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docker/ubuntu24/ubuntu24-build/Dockerfile b/Docker/ubuntu24/ubuntu24-build/Dockerfile index 710efaa..683be1f 100644 --- a/Docker/ubuntu24/ubuntu24-build/Dockerfile +++ b/Docker/ubuntu24/ubuntu24-build/Dockerfile @@ -8,6 +8,6 @@ RUN apt update -y && \ apt clean && \ rm -rf /var/lib/apt/lists/* -RUN pip3 install boto3 requests +RUN apt install python3-boto3 python3-requests CMD ["/bin/bash"] \ No newline at end of file