Use python3 in Dockerfile (#3426)

This commit is contained in:
Lion - dapplion
2021-11-10 14:59:48 +01:00
committed by GitHub
parent 5f94e69320
commit 6b4f9ed104
2 changed files with 2 additions and 2 deletions

View File

@@ -21,7 +21,7 @@
FROM node:14-alpine as build
WORKDIR /usr/app
RUN apk update && apk add --no-cache g++ make python && rm -rf /var/cache/apk/*
RUN apk update && apk add --no-cache g++ make python3 && rm -rf /var/cache/apk/*
# Installs all deps in the root yarn.lock, which are most of them. To cache before copying the src
COPY package.json yarn.lock ./