Skip to content

Commit

Permalink
Merge pull request #49 from laradock/develop
Browse files Browse the repository at this point in the history
upgrade base image
  • Loading branch information
bestlong authored May 19, 2021
2 parents afd8678 + c1c3768 commit 1ae231c
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 10 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/dockerpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ name: Docker Image CI

on:
push:
branches:
- 'master'
branches: '**'
tags: '**'
pull_request:
branches:
Expand Down Expand Up @@ -53,6 +52,6 @@ jobs:
uses: docker/build-push-action@v2
with:
file: Dockerfile-${{ matrix.php_version }}
platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v7,linux/arm/v6
platforms: linux/amd64,linux/arm64,linux/386
push: ${{ (github.repository == 'laradock/workspace') }}
tags: ${{ steps.meta.outputs.tags }}
2 changes: 1 addition & 1 deletion Dockerfile-5.6
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#--------------------------------------------------------------------------
#

FROM phusion/baseimage:0.11
FROM phusion/baseimage:focal-1.0.0

LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-7.0
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#--------------------------------------------------------------------------
#

FROM phusion/baseimage:0.11
FROM phusion/baseimage:focal-1.0.0

LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-7.1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#--------------------------------------------------------------------------
#

FROM phusion/baseimage:0.11
FROM phusion/baseimage:focal-1.0.0

LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-7.2
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#--------------------------------------------------------------------------
#

FROM phusion/baseimage:0.11
FROM phusion/baseimage:focal-1.0.0

LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-7.3
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#--------------------------------------------------------------------------
#

FROM phusion/baseimage:0.11
FROM phusion/baseimage:focal-1.0.0

LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-7.4
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#--------------------------------------------------------------------------
#

FROM phusion/baseimage:0.11
FROM phusion/baseimage:focal-1.0.0

LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-8.0
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#--------------------------------------------------------------------------
#

FROM phusion/baseimage:0.11
FROM phusion/baseimage:focal-1.0.0

LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"

Expand Down
20 changes: 20 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

build: all

all:
docker build -f ./Dockerfile-5.6 .
docker build -f ./Dockerfile-7.0 .
docker build -f ./Dockerfile-7.1 .
docker build -f ./Dockerfile-7.2 .
docker build -f ./Dockerfile-7.3 .
docker build -f ./Dockerfile-7.4 .
docker build -f ./Dockerfile-8.0 .

all-nc:
docker build -f ./Dockerfile-5.6 --no-cache --pull .
docker build -f ./Dockerfile-7.0 --no-cache --pull .
docker build -f ./Dockerfile-7.1 --no-cache --pull .
docker build -f ./Dockerfile-7.2 --no-cache --pull .
docker build -f ./Dockerfile-7.3 --no-cache --pull .
docker build -f ./Dockerfile-7.4 --no-cache --pull .
docker build -f ./Dockerfile-8.0 --no-cache --pull .

0 comments on commit 1ae231c

Please sign in to comment.