From 7cd03827c993d83ba3b33dce58120fbd45e3e434 Mon Sep 17 00:00:00 2001 From: ABaldwinHunter Date: Tue, 19 Jan 2016 17:42:43 -0500 Subject: [PATCH] Add update command to Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 301f0277..0b6bcef8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ COPY vendor/php-parser/composer.json /usr/src/app/vendor/php-parser/ COPY vendor/php-parser/composer.lock /usr/src/app/vendor/php-parser/ RUN curl --silent --location https://deb.nodesource.com/setup_5.x | bash - -RUN apt-get install -y nodejs python openssh-client php5-cli php5-json +RUN apt-get update && apt-get install -y nodejs python openssh-client php5-cli php5-json RUN gem install bundler --no-ri --no-rdoc && \ bundle install -j 4 && \ curl -sS https://getcomposer.org/installer | php