diff --git a/Dockerfile b/Dockerfile index 52223bd..d1596c1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM alpine # Install only bash and nodejs, then remove cached package data -RUN apk add --update bash && apk add --update nodejs nodejs-npm && rm -rf /var/cache/apk/* +RUN apk add --update bash && apk add --update nodejs npm git && rm -rf /var/cache/apk/* # Create app directory. This is where source code will be copied to RUN mkdir -p /usr/src/app