From 661ec5f5e021fd6dbf3a13f5c7bddafa503ee46d Mon Sep 17 00:00:00 2001 From: John Smith Date: Sat, 4 Dec 2021 19:06:31 -0500 Subject: [PATCH] fix: arm dockerfile alpine python version --- dev/build-arm/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/build-arm/Dockerfile b/dev/build-arm/Dockerfile index b2e60cab..45527fbf 100644 --- a/dev/build-arm/Dockerfile +++ b/dev/build-arm/Dockerfile @@ -3,7 +3,7 @@ # ========================= FROM node:16-alpine AS build -RUN apk add yarn g++ make --no-cache +RUN apk add yarn g++ make python3 --no-cache WORKDIR /wiki