Skip to content

Commit 1ae231c

Browse files
authored
Merge pull request #49 from laradock/develop
upgrade base image
2 parents afd8678 + c1c3768 commit 1ae231c

File tree

9 files changed

+29
-10
lines changed

9 files changed

+29
-10
lines changed

.github/workflows/dockerpublish.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ name: Docker Image CI
22

33
on:
44
push:
5-
branches:
6-
- 'master'
5+
branches: '**'
76
tags: '**'
87
pull_request:
98
branches:
@@ -53,6 +52,6 @@ jobs:
5352
uses: docker/build-push-action@v2
5453
with:
5554
file: Dockerfile-${{ matrix.php_version }}
56-
platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v7,linux/arm/v6
55+
platforms: linux/amd64,linux/arm64,linux/386
5756
push: ${{ (github.repository == 'laradock/workspace') }}
5857
tags: ${{ steps.meta.outputs.tags }}

Dockerfile-5.6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#--------------------------------------------------------------------------
55
#
66

7-
FROM phusion/baseimage:0.11
7+
FROM phusion/baseimage:focal-1.0.0
88

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

Dockerfile-7.0

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#--------------------------------------------------------------------------
55
#
66

7-
FROM phusion/baseimage:0.11
7+
FROM phusion/baseimage:focal-1.0.0
88

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

Dockerfile-7.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#--------------------------------------------------------------------------
55
#
66

7-
FROM phusion/baseimage:0.11
7+
FROM phusion/baseimage:focal-1.0.0
88

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

Dockerfile-7.2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#--------------------------------------------------------------------------
55
#
66

7-
FROM phusion/baseimage:0.11
7+
FROM phusion/baseimage:focal-1.0.0
88

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

Dockerfile-7.3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#--------------------------------------------------------------------------
55
#
66

7-
FROM phusion/baseimage:0.11
7+
FROM phusion/baseimage:focal-1.0.0
88

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

Dockerfile-7.4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#--------------------------------------------------------------------------
55
#
66

7-
FROM phusion/baseimage:0.11
7+
FROM phusion/baseimage:focal-1.0.0
88

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

Dockerfile-8.0

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#--------------------------------------------------------------------------
55
#
66

7-
FROM phusion/baseimage:0.11
7+
FROM phusion/baseimage:focal-1.0.0
88

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

Makefile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
build: all
3+
4+
all:
5+
docker build -f ./Dockerfile-5.6 .
6+
docker build -f ./Dockerfile-7.0 .
7+
docker build -f ./Dockerfile-7.1 .
8+
docker build -f ./Dockerfile-7.2 .
9+
docker build -f ./Dockerfile-7.3 .
10+
docker build -f ./Dockerfile-7.4 .
11+
docker build -f ./Dockerfile-8.0 .
12+
13+
all-nc:
14+
docker build -f ./Dockerfile-5.6 --no-cache --pull .
15+
docker build -f ./Dockerfile-7.0 --no-cache --pull .
16+
docker build -f ./Dockerfile-7.1 --no-cache --pull .
17+
docker build -f ./Dockerfile-7.2 --no-cache --pull .
18+
docker build -f ./Dockerfile-7.3 --no-cache --pull .
19+
docker build -f ./Dockerfile-7.4 --no-cache --pull .
20+
docker build -f ./Dockerfile-8.0 --no-cache --pull .

0 commit comments

Comments
 (0)