From 40fafa7bd383ed1c44a8526b722ca55fb22a6abf Mon Sep 17 00:00:00 2001 From: "Theodore R. Smith" Date: Wed, 31 Oct 2018 19:01:31 -0500 Subject: [PATCH] (#133) Fixed the `docker-compose up installer`. **The Problem** was that the inherited docker image no longer contains the packages for git and npm. **The Solution** was to edit the relevant Dockerfile and install them via apk. Fixes Minds/minds#133 --- containers/installer/Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/containers/installer/Dockerfile b/containers/installer/Dockerfile index 1c135fc2ef..134b17b4f7 100644 --- a/containers/installer/Dockerfile +++ b/containers/installer/Dockerfile @@ -1,5 +1,9 @@ FROM minds/php:latest +# Install the necessary package dependencies. +RUN apk add git npm + COPY containers/installer/install.sh install.sh -ENTRYPOINT [ "sh", "./install.sh" ] \ No newline at end of file +ENTRYPOINT [ "sh", "./install.sh" ] +