From 33aee826a3c23863d6c734febb299d5a00e95ede Mon Sep 17 00:00:00 2001 From: avtrifanov <45821070+avtrifanov@users.noreply.github.com> Date: Thu, 16 Feb 2023 10:48:31 +0300 Subject: [PATCH] Remove unnecessary make call Seems the second make call appeared due to copy-paste new flags from https://github.com/docker-library/python/issues/784 --- 3.11/buster/Dockerfile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/3.11/buster/Dockerfile b/3.11/buster/Dockerfile index ef500c785..4d4870a48 100644 --- a/3.11/buster/Dockerfile +++ b/3.11/buster/Dockerfile @@ -52,14 +52,8 @@ RUN set -eux; \ --without-ensurepip \ ; \ nproc="$(nproc)"; \ - make -j "$nproc" \ - "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" \ - "LDFLAGS=${LDFLAGS:-}" \ - "PROFILE_TASK=${PROFILE_TASK:-}" \ - ; \ # https://github.com/docker-library/python/issues/784 # prevent accidental usage of a system installed libpython of the same version - rm python; \ make -j "$nproc" \ "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" \ "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" \