docker update + git fun

This commit is contained in:
2019-04-04 22:13:03 +11:00
parent 75fa6e7b8c
commit fd6e4ab922
3 changed files with 12 additions and 4 deletions

View File

@@ -7,9 +7,6 @@ WORKDIR /app
COPY package.json /app
# We then run npm install to install
# 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