Skip to content

Commit 315b296

Browse files
committed
Build Docker image with PHP 8.5
1 parent 68cb2c4 commit 315b296

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/app.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
name: 'App Build'
22

33
on:
4-
workflow_run:
5-
workflows: ['CI']
6-
types:
7-
- completed
4+
pull_request:
5+
push:
6+
workflow_dispatch:
87

98
jobs:
109
build:

app/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
FROM phpdockerio/php:8.4-fpm
1+
FROM phpdockerio/php:8.5-fpm
22
WORKDIR /application
33

44
ARG GIT_COMMIT_ID=""
55

66
# Install selected extensions and other stuff
77
RUN apt-get update \
88
&& apt-get -y --no-install-recommends install \
9-
php8.4-sqlite \
10-
php8.4-intl \
11-
php8.4-gd \
9+
php8.5-sqlite \
10+
php8.5-intl \
11+
php8.5-gd \
1212
&& apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /var/log/* /var/cache/* /usr/share/doc/*
1313

1414
COPY app/bin/console ./bin/

0 commit comments

Comments
 (0)