Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Update php default php version #1

Merged
merged 2 commits into from
Jan 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,14 @@ jobs:
strategy:
matrix:
include:
- variant: 'minimalist'
php_version: '8.2'
- variant: 'minimalist'
php_version: '8.1'
- variant: 'minimalist'
php_version: '7.4'
- variant: 'memcached'
php_version: '8.2'
- variant: 'memcached'
php_version: '8.1'
- variant: 'memcached'
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ RUN apk --update --no-cache add \
libxslt-dev \
libxrender \
libgomp \
linux-headers\
imagemagick imagemagick-dev \
oniguruma-dev \
openssh-client \
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ git-tag: ## Update tag on git repository

##-------------------
## Docker :
PHP_VERSION ?= 8.1
PHP_VERSION ?= 8.2
WITH_APK ?= ''
WITH_ENABLED_EXT ?= ''
build: ## Build docker image
Expand All @@ -28,7 +28,7 @@ remove: ## Remove docker image
@container=$(docker images symfony-cli -a -q)
@[ "${container}" ] && docker rmi $(container) || echo "No container to remove"

TAG ?= 8.1-minimalist
TAG ?= 8.2-minimalist
tag: ## Tag docker image
docker tag symfony-cli raneomik/symfony-cli:$(TAG)

Expand Down