diff options
author | Yamagishi Kazutoshi <ykzts@desire.sh> | 2022-09-29 23:36:14 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-29 16:36:14 +0200 |
commit | 5cf056fdb0b16c3d8e093c28c3bcd8e54dc544ae (patch) | |
tree | db42a9f9579cf918a0cc7b99775f9aec9bc18549 | |
parent | cf5d27c3b72742b0e59b0a45d0c088d37a9db051 (diff) |
Install python3 when building with Docker (#18072)
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 42869d5de..cf311fef2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ RUN ARCH= && \ esac && \ echo "Etc/UTC" > /etc/localtime && \ apt-get update && \ - apt-get install -y --no-install-recommends ca-certificates wget python apt-utils && \ + apt-get install -y --no-install-recommends ca-certificates wget python3 apt-utils && \ cd ~ && \ wget -q https://nodejs.org/download/release/v$NODE_VER/node-v$NODE_VER-linux-$ARCH.tar.gz && \ tar xf node-v$NODE_VER-linux-$ARCH.tar.gz && \ |