diff --git a/Dockerfile b/Dockerfile index 6a4350218..e6be85a68 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,11 @@ -FROM node:boron +FROM node:boron-alpine + +RUN apk add --update git # Install dependencies WORKDIR /data COPY package.json /data -RUN npm install +RUN npm install && npm cache clean # Build from source COPY . /data