From 156b0c105fa92f7655ab1dc66d158e94e162949f Mon Sep 17 00:00:00 2001 From: maxnus Date: Sun, 11 Mar 2018 20:21:46 +0700 Subject: [PATCH] - Added git to nginx-node --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3173dec..2ba7ae5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,6 +21,9 @@ LABEL maintainer="Finiz Open Source Software " # Update apk repositories to be latest RUN apk update +# Install git +RUN apk add git + # Install and config Supervisor RUN apk add python py2-pip RUN pip install wheel @@ -132,4 +135,4 @@ EXPOSE 8080 # Run the startup script WORKDIR / -CMD ["/start.sh"] \ No newline at end of file +CMD ["/start.sh"]