From df52ece0e1f43476d6d859bd36734e368e724fa6 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Wed, 29 May 2024 14:15:37 -0700 Subject: [PATCH] add python3 too --- dockerhub/alpine/Dockerfile | 1 + dockerhub/debian-slim/Dockerfile | 1 + dockerhub/debian/Dockerfile | 1 + 3 files changed, 3 insertions(+) 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