Skip to content

Commit 432890d

Browse files
committed
(wip)
1 parent 9037f0d commit 432890d

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

.github/workflows/docker-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jobs:
128128
with:
129129
images: lojassimonetti/php-apache-oci8-composer
130130
tags: |
131-
type=raw,value=${{ inputs.name }}-{{ matrix.variation }},enable=true
131+
type=raw,value=${{ inputs.name }}-${{ matrix.variation }},enable=true
132132
133133
- name: Should push?
134134
id: shouldPush

Dockerfile.grpc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
FROM lojassimonetti/php-apache-oci8-composer:php8dot3
1+
ARG IMAGE_BASE
2+
FROM ${IMAGE_BASE}
23

34
USER root
45

Dockerfile.mongodb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
FROM lojassimonetti/php-apache-oci8-composer:php8dot3
1+
ARG IMAGE_BASE
2+
FROM ${IMAGE_BASE}
23

34
USER root
45

Dockerfile.mongodb-1.21.0

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
FROM lojassimonetti/php-apache-oci8-composer:php8dot3
1+
ARG IMAGE_BASE
2+
FROM ${IMAGE_BASE}
23

34
USER root
45

Dockerfile.pgsql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
ARG IMAGE_BASE
2-
32
FROM ${IMAGE_BASE}
43

54
USER root

config.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
{
1414
"name": "php8dot0",
1515
"version": "8.0",
16-
"base": "php:8.0-apache-bookworm",
16+
"base": "php:8.0-apache",
1717
"xdebug_version": "3.2.1",
1818
"redis_version": "5.3.7",
1919
"imap_version": "",
@@ -52,7 +52,7 @@
5252
"imap_version": "",
5353
"imap_type": "php-ext",
5454
"php_erros_enabled": true,
55-
"variations": []
55+
"variations": ["grpc", "mongodb", "mongodb-1.21.0"]
5656
},
5757
{
5858
"name": "php8dot4",
@@ -63,6 +63,6 @@
6363
"imap_version": "",
6464
"imap_type": "pecl",
6565
"php_erros_enabled": true,
66-
"variations": []
66+
"variations": ["grpc", "mongodb"]
6767
}
6868
]

0 commit comments

Comments
 (0)