From 924bcea8f03af267ff980291e577dd785d95a07e Mon Sep 17 00:00:00 2001 From: Richard Chim <44983719+richard-chim@users.noreply.github.com> Date: Tue, 7 Jun 2022 23:37:55 -0400 Subject: [PATCH] Update python2 to python3 in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 43c08a0..dd8c4eb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]