From f296d0b3cb560b0bdcbfe1cb864b20e43e1616f6 Mon Sep 17 00:00:00 2001 From: phips28 Date: Sat, 26 Oct 2019 21:13:15 +0200 Subject: [PATCH] fix docker file: install git --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 017bcf9..17a2ceb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,6 +22,8 @@ LABEL "com.github.actions.color"="blue" COPY package*.json ./ # Install dependencies +RUN apt-get update +RUN apt-get -y install git RUN npm ci # Copy the rest of your action's code