From: Yamagishi Kazutoshi Date: Thu, 29 Sep 2022 14:36:14 +0000 (+0900) Subject: Install python3 when building with Docker (#18072) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=58700c051119b88c9665a3887292de55e5d3d541;p=mastodon.git Install python3 when building with Docker (#18072) --- diff --git a/Dockerfile b/Dockerfile index c1177264f..bc365a59e 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 && \