From a49bf427d7c0235bcab3cab5bbc6894604b47454 Mon Sep 17 00:00:00 2001 From: Jose Javier Merchante Date: Tue, 27 Aug 2024 13:41:30 +0200 Subject: [PATCH] Remove python3 installation from Dockerfile This commit removes the installation of Python 3 and associated packages from the Dockerfile. These packages were introducing a vulnerability related to `python-wheel`. This change eliminates the risk by removing the unnecessary packages because Python has already been installed. Signed-off-by: Jose Javier Merchante --- docker/Dockerfile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 6df3ae5..719c05b 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -20,11 +20,6 @@ RUN apt-get update && \ bash locales \ gcc \ git git-core \ - python3 \ - python3-pip \ - python3-venv \ - python3-dev \ - python3-gdbm \ mariadb-client \ libmariadbclient-dev-compat \ unzip curl wget sudo ssh \