chore(docker) alpine: python -> python3

This commit is contained in:
coderaiser 2021-12-15 17:54:49 +02:00
parent 228744bec8
commit 49f4e5bec7

View file

@ -9,10 +9,10 @@ COPY package.json /usr/src/app/
RUN npm config set package-lock false && \ RUN npm config set package-lock false && \
npm install --production && \ npm install --production && \
apk update && \ apk update && \
apk add --no-cache bash make g++ python && \ apk add --no-cache bash make g++ python3 && \
npm i gritty && \ npm i gritty && \
npm cache clean --force && \ npm cache clean --force && \
apk del make g++ python && \ apk del make g++ python3 && \
rm -rf /usr/include /tmp/* /var/cache/apk/* rm -rf /usr/include /tmp/* /var/cache/apk/*
COPY . /usr/src/app COPY . /usr/src/app