fix docker file: install git

This commit is contained in:
phips28 2019-10-26 21:13:15 +02:00
parent 780666dca1
commit f296d0b3cb
1 changed files with 2 additions and 0 deletions

View File

@ -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