Rename python to python3 in alpine Docker build dependency

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2021-05-19 14:39:19 +02:00
parent bd176a20f5
commit 9b9b274079
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 1 additions and 1 deletions

View File

@ -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 \