From bc11185376f2a07c4d2e8e52b7c7cd07519fdaa3 Mon Sep 17 00:00:00 2001 From: Pouria Ezzati Date: Thu, 9 Jan 2025 11:20:28 +0330 Subject: [PATCH] fix install python command --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5d678e7f..23c0b713 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:18.19.1-alpine AS build_image # install additional tools needed if on arm64 / armv7 -RUN RUN apk add --update python3 make g++\ +RUN apk add --update python3 make g++\ && rm -rf /var/cache/apk/*