From 364f8546174334c5b52ada124476e77ef8f27af8 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Sat, 29 Dec 2018 21:39:25 +0000 Subject: [PATCH] PHP 7.1.25 and NodeJS 10.15 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 89a6b9e..f64940a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM php:7.1.20-cli +FROM php:7.1.25-cli RUN apt-get update && apt-get -y install apt-transport-https curl gnupg RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list -RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - +RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - RUN echo "memory_limit=2048M" > $PHP_INI_DIR/conf.d/memory-limit.ini RUN apt-get -y install git libsqlite3-dev libxml2-dev unzip yarn zlib1g-dev