From 6b9daf36272b56ebe0387c9d4315609cd2e599a9 Mon Sep 17 00:00:00 2001 From: David Windell Date: Wed, 13 Apr 2016 13:29:27 +0100 Subject: [PATCH] Upgrade to Magento 2.0.4, PHP 7.0.4, Node 4 and remove Ruby --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4410e56..5420143 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,18 +1,18 @@ -FROM outeredge/edge-docker-php:7.0.3 +FROM outeredge/edge-docker-php:7.0.4 # Environment vars ENV ADDITIONAL_STORES= \ ENABLE_CRON=On \ - MAGENTO_VERSION=2.0.2 \ + MAGENTO_VERSION=2.0.4 \ DB_HOST= \ DB_USERNAME= \ DB_PASSWORD= \ DB_NAME= \ MAGE_MODE=developer -# Install npm -RUN apt-get update && \ - apt-get install -y --no-install-recommends ruby nodejs-legacy npm && \ +# Install node +RUN curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash - && \ + apt-get install -y --no-install-recommends nodejs && \ apt-get clean && rm -rf /tmp/* /var/lib/apt/lists/* # Add system configuration