From efa6fc468af1cfb4123c50cad38e093d6ba6d722 Mon Sep 17 00:00:00 2001 From: Gaofei Zhao <15748980+dippindots@users.noreply.github.com> Date: Thu, 25 Jul 2024 19:31:27 +0000 Subject: [PATCH] try --- docker/web-and-data/Dockerfile | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/docker/web-and-data/Dockerfile b/docker/web-and-data/Dockerfile index c157684ec7e..1b883b93444 100644 --- a/docker/web-and-data/Dockerfile +++ b/docker/web-and-data/Dockerfile @@ -29,18 +29,13 @@ RUN mkdir -p target/dependency && (cd target/dependency; jar -xf ../*-exec.jar) FROM eclipse-temurin:21 # download system dependencies first to take advantage of docker caching -RUN apt update; apt install -y --no-install-recommends \ +RUN apt update; apt install pipx; pipx ensurepath; apt install -y --no-install-recommends \ build-essential \ default-mysql-client \ default-libmysqlclient-dev \ - python3 \ - python3-full \ - python3-setuptools \ - python3-dev \ - python3-pip \ unzip \ && rm -rf /var/lib/apt/lists/* \ - && pip3 install wheel + && pipx install wheel # copy over core files and data-related scripts