Add missing dependency git in Dockerfile

This commit is contained in:
Robert Schäfer 2019-05-27 15:37:08 +02:00
parent fb0e6f5abd
commit 0e9fce0a07

View File

@ -7,6 +7,9 @@ ENV BUILD_COMMIT=$BUILD_COMMIT
ARG WORKDIR=/nitro-backend
RUN mkdir -p $WORKDIR
WORKDIR $WORKDIR
RUN apk --no-cache add git
COPY package.json yarn.lock ./
COPY .env.template .env
CMD ["yarn", "run", "start"]