From 1294b43007f1b357098476d65e5df689d5521036 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 5 Feb 2022 05:39:14 +0000 Subject: [PATCH] :ambulance: Updates Python to Python3 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8c1e7c75..86ae3f75 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:14.17.5-alpine AS BUILD_IMAGE +FROM node:16.13.2-alpine AS BUILD_IMAGE ARG TARGETPLATFORM ENV TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64} @@ -6,8 +6,8 @@ ENV TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64} # Install additional tools needed on arm64 and armv7 RUN \ case "${TARGETPLATFORM}" in \ - 'linux/arm64') apk add --no-cache python make g++ ;; \ - 'linux/arm/v7') apk add --no-cache python make g++ ;; \ + 'linux/arm64') apk add --no-cache python3 make g++ ;; \ + 'linux/arm/v7') apk add --no-cache python3 make g++ ;; \ esac # Create and set the working directory