Added git install

This commit is contained in:
Nicolai Ort 2020-07-08 14:00:07 +02:00
parent a92614aad3
commit 3ed227e3a4
1 changed files with 3 additions and 0 deletions

View File

@ -2,6 +2,9 @@
FROM node:alpine AS build
WORKDIR /build
## Install git (test)
RUN apk add --no-cache git
## Install app dependencies
COPY package*.json ./
RUN npm install --unsafe-perm