diff --git a/dockerhub/alpine/Dockerfile b/dockerhub/alpine/Dockerfile index 5dd701012a..30ac0b6d94 100644 --- a/dockerhub/alpine/Dockerfile +++ b/dockerhub/alpine/Dockerfile @@ -113,6 +113,7 @@ RUN --mount=type=bind,from=build,source=/tmp,target=/tmp \ && ln -s /usr/local/bin/bun /usr/local/bin/bunx \ && apk --no-cache add \ git \ + python3 \ && which bun \ && which bunx \ && bun --version diff --git a/dockerhub/debian-slim/Dockerfile b/dockerhub/debian-slim/Dockerfile index d44f7b4dfe..157e6a0367 100644 --- a/dockerhub/debian-slim/Dockerfile +++ b/dockerhub/debian-slim/Dockerfile @@ -80,6 +80,7 @@ RUN groupadd bun \ && apt update \ && apt-get install -qq --no-install-recommends \ git \ + python3 \ && which bun \ && which bunx \ && bun --version diff --git a/dockerhub/debian/Dockerfile b/dockerhub/debian/Dockerfile index a69ae5929f..bd338f24ce 100644 --- a/dockerhub/debian/Dockerfile +++ b/dockerhub/debian/Dockerfile @@ -81,6 +81,7 @@ RUN groupadd bun \ && apt update \ && apt-get install -qq --no-install-recommends \ git \ + python3 \ && which bun \ && which bunx \ && bun --version