From 9b9b27407994964f78924803e1db0c5ad843e28d Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Wed, 19 May 2021 14:39:19 +0200 Subject: [PATCH] Rename python to python3 in alpine Docker build dependency Signed-off-by: Thomas Citharel --- docker/production/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/production/Dockerfile b/docker/production/Dockerfile index 51d9910b2..1f9155a4c 100644 --- a/docker/production/Dockerfile +++ b/docker/production/Dockerfile @@ -1,7 +1,7 @@ # First build the application assets FROM node:16-alpine as assets -RUN apk add --no-cache python build-base libwebp-tools bash imagemagick ncurses +RUN apk add --no-cache python3 build-base libwebp-tools bash imagemagick ncurses COPY js . RUN yarn install \