Updated Dockerfile to PHP 8.2 & removed Google Cloud build's as we switche to Github actions

This commit is contained in:
Tomas Srnka
2023-04-30 13:03:26 +02:00
parent 42537026ab
commit 8aeac3dfe4
2 changed files with 1 additions and 15 deletions

View File

@@ -1,4 +1,4 @@
ARG PHP_IMAGE=php:8.0
ARG PHP_IMAGE=php:8.2
FROM $PHP_IMAGE
RUN docker-php-ext-configure pcntl --enable-pcntl \

View File

@@ -1,14 +0,0 @@
steps:
- name: 'gcr.io/cloud-builders/docker'
args: [ 'build', '-t', 'gcr.io/$PROJECT_ID/build-8.0.0', '--build-arg=PHP_IMAGE=php:8.0.0-buster', '.' ]
waitFor: ['-']
id: 'build-8.0.0'
- name: 'gcr.io/cloud-builders/docker'
args: ['run', 'gcr.io/$PROJECT_ID/build-8.0.0']
waitFor: ['build-8.0.0']
id: 'run-8.0.0'
images: [
'gcr.io/$PROJECT_ID/build-8.0.0'
]