Update python2 to python3 in Dockerfile

This commit is contained in:
Richard Chim 2022-06-07 23:37:55 -04:00 committed by Richard Chim
parent 44293a387e
commit 924bcea8f0

View File

@ -1,6 +1,6 @@
FROM node:lts-alpine
RUN apk add --no-cache git python2 build-base
RUN apk add --no-cache git python3 build-base
RUN npm i -g --force yarn
COPY "entrypoint.sh" "/entrypoint.sh"
ENTRYPOINT ["/entrypoint.sh"]