24
1
Fork 0

added git package to docker image

This commit is contained in:
Danny Coates 2017-07-20 08:36:05 -07:00
parent 4f36f2befa
commit 34f26fc017
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB
1 changed files with 1 additions and 0 deletions

View File

@ -1,5 +1,6 @@
FROM node:8-alpine
RUN apk add --no-cache git
RUN addgroup -S -g 10001 app && adduser -S -D -G app -u 10001 app
COPY . /app
RUN chown -R app /app