From a102b11cc1dcea0149221f84534b393a6205fc2f Mon Sep 17 00:00:00 2001 From: lesion Date: Fri, 22 Apr 2022 23:04:21 +0200 Subject: [PATCH] install git in Dockerfile, fix #148 --- docs/docker/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/docker/Dockerfile b/docs/docker/Dockerfile index 409ae120..71bff2ee 100644 --- a/docs/docker/Dockerfile +++ b/docs/docker/Dockerfile @@ -1,4 +1,5 @@ FROM node:17.4-slim +RUN bash -c "apt update -y && apt install git -y && apt clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp" RUN yarn global remove gancio || true RUN yarn cache clean RUN yarn global add --latest --production --silent https://gancio.org/latest.tgz