From 76484ed84521541996b41cfe4c354c79f0705377 Mon Sep 17 00:00:00 2001 From: Nathan Dench Date: Wed, 27 Mar 2019 09:30:19 +1000 Subject: [PATCH] Update to debian stretch --- README.md | 2 +- node-8-chrome.Dockerfile | 2 +- php-7.Dockerfile | 2 +- php-71.Dockerfile | 2 +- php-72.Dockerfile | 2 +- scripts/install-php7 | 4 ++-- scripts/install-php71 | 4 ++-- scripts/install-php72 | 4 ++-- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index e866398..9e80c5a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Docker CI builds image with [Node], [PHP] and [Composer] -This Docker image is based on the official node image which uses Debian Jessie. +This Docker image is based on the official node 8 image which uses Debian Stretch. It is intended for running Continuous Integration and deployment builds for PHP applications with Node dependencies for compiling static assets. It also features [AWS cli] for interacting with AWS Services. diff --git a/node-8-chrome.Dockerfile b/node-8-chrome.Dockerfile index 02496fd..5f2e814 100644 --- a/node-8-chrome.Dockerfile +++ b/node-8-chrome.Dockerfile @@ -1,4 +1,4 @@ -FROM node:8 +FROM node:8-stretch # Let the container know that there is no tty ENV DEBIAN_FRONTEND noninteractive diff --git a/php-7.Dockerfile b/php-7.Dockerfile index d86f7db..a9c8c55 100644 --- a/php-7.Dockerfile +++ b/php-7.Dockerfile @@ -1,4 +1,4 @@ -FROM node:8 +FROM node:8-stretch # Let the container know that there is no tty ENV DEBIAN_FRONTEND noninteractive diff --git a/php-71.Dockerfile b/php-71.Dockerfile index f3fada2..45a8efc 100644 --- a/php-71.Dockerfile +++ b/php-71.Dockerfile @@ -1,4 +1,4 @@ -FROM node:8 +FROM node:8-stretch # Let the container know that there is no tty ENV DEBIAN_FRONTEND noninteractive diff --git a/php-72.Dockerfile b/php-72.Dockerfile index 46d88e9..50ab45b 100644 --- a/php-72.Dockerfile +++ b/php-72.Dockerfile @@ -1,4 +1,4 @@ -FROM node:8 +FROM node:8-stretch # Let the container know that there is no tty ENV DEBIAN_FRONTEND noninteractive diff --git a/scripts/install-php7 b/scripts/install-php7 index 3cfd6a6..b0803b9 100755 --- a/scripts/install-php7 +++ b/scripts/install-php7 @@ -3,8 +3,8 @@ set -xe # Add sury repository -echo "deb https://packages.sury.org/php/ jessie main" > /etc/apt/sources.list.d/php.list -echo "deb-src https://packages.sury.org/php/ jessie main" >> /etc/apt/sources.list.d/php.list +echo "deb https://packages.sury.org/php/ stretch main" > /etc/apt/sources.list.d/php.list +echo "deb-src https://packages.sury.org/php/ stretch main" >> /etc/apt/sources.list.d/php.list wget -O- "https://packages.sury.org/php/apt.gpg" | apt-key add - # Install PHP 7 and its modules diff --git a/scripts/install-php71 b/scripts/install-php71 index db65f74..2647c60 100755 --- a/scripts/install-php71 +++ b/scripts/install-php71 @@ -3,8 +3,8 @@ set -xe # Add sury repository -echo "deb https://packages.sury.org/php/ jessie main" > /etc/apt/sources.list.d/php.list -echo "deb-src https://packages.sury.org/php/ jessie main" >> /etc/apt/sources.list.d/php.list +echo "deb https://packages.sury.org/php/ stretch main" > /etc/apt/sources.list.d/php.list +echo "deb-src https://packages.sury.org/php/ stretch main" >> /etc/apt/sources.list.d/php.list wget -O- "https://packages.sury.org/php/apt.gpg" | apt-key add - # Install PHP 7 and its modules diff --git a/scripts/install-php72 b/scripts/install-php72 index c157ed2..a853cf1 100755 --- a/scripts/install-php72 +++ b/scripts/install-php72 @@ -3,8 +3,8 @@ set -xe # Add sury repository -echo "deb https://packages.sury.org/php/ jessie main" > /etc/apt/sources.list.d/php.list -echo "deb-src https://packages.sury.org/php/ jessie main" >> /etc/apt/sources.list.d/php.list +echo "deb https://packages.sury.org/php/ stretch main" > /etc/apt/sources.list.d/php.list +echo "deb-src https://packages.sury.org/php/ stretch main" >> /etc/apt/sources.list.d/php.list wget -O- "https://packages.sury.org/php/apt.gpg" | apt-key add - # Install PHP 7 and its modules