Skip to content

Commit

Permalink
Merge pull request #4 from ndench/update-stretch
Browse files Browse the repository at this point in the history
Update to debian stretch
  • Loading branch information
Grzegorz Rajchman authored Mar 28, 2019
2 parents 643bf0a + 76484ed commit ccce576
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion node-8-chrome.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:8
FROM node:8-stretch

# Let the container know that there is no tty
ENV DEBIAN_FRONTEND noninteractive
Expand Down
2 changes: 1 addition & 1 deletion php-7.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:8
FROM node:8-stretch

# Let the container know that there is no tty
ENV DEBIAN_FRONTEND noninteractive
Expand Down
2 changes: 1 addition & 1 deletion php-71.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:8
FROM node:8-stretch

# Let the container know that there is no tty
ENV DEBIAN_FRONTEND noninteractive
Expand Down
2 changes: 1 addition & 1 deletion php-72.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:8
FROM node:8-stretch

# Let the container know that there is no tty
ENV DEBIAN_FRONTEND noninteractive
Expand Down
4 changes: 2 additions & 2 deletions scripts/install-php7
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions scripts/install-php71
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions scripts/install-php72
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ccce576

Please sign in to comment.