diff --git a/docker/Dockerfile.alpine b/docker/Dockerfile.alpine index 9f1beb42..5a1e9214 100644 --- a/docker/Dockerfile.alpine +++ b/docker/Dockerfile.alpine @@ -9,10 +9,10 @@ COPY package.json /usr/src/app/ RUN npm config set package-lock false && \ npm install --production && \ apk update && \ - apk add --no-cache bash make g++ python && \ + apk add --no-cache bash make g++ python3 && \ npm i gritty && \ npm cache clean --force && \ - apk del make g++ python && \ + apk del make g++ python3 && \ rm -rf /usr/include /tmp/* /var/cache/apk/* COPY . /usr/src/app