From a87a9778a89059abb31d6bb89059c724ead4ae14 Mon Sep 17 00:00:00 2001 From: Max Litruv Boonzaayer Date: Thu, 4 Apr 2019 21:02:24 +1100 Subject: [PATCH] ... --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e9bec4b..60061f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,10 @@ WORKDIR /app # app directory COPY package.json /app # We then run npm install to install -# express for our application -RUN apt-get install --assume-yes git +# express for our applicationRUN +RUN apt-get update && \ + apt-get upgrade -y && \ + apt-get install -y git RUN npm install # We then copy the rest of our application # to the app direcoty