File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020 - main
2121 paths :
2222 - php/**
23+ - .github/workflows/frankenphp.yml
2324 workflow_dispatch :
2425 inputs : {}
2526
4142 file : frankenphp.Dockerfile
4243 build-args : |
4344 PHP_VERSION=8.4
45+ - version : 8.5
46+ file : frankenphp.Dockerfile
47+ build-args : |
48+ PHP_VERSION=8.5
4449
4550 steps :
4651 - name : Checkout
Original file line number Diff line number Diff line change @@ -137,12 +137,21 @@ FROM app-frankenphp-base AS frankenphp-base-dev
137137USER root
138138
139139ENV PHP_XDEBUG_HOST=host.docker.internal \
140- PHP_XDEBUG_MODE=off
140+ PHP_XDEBUG_MODE=off \
141+ PHP_ASSERT=1 \
142+ COMPOSER_CACHE_DIR=/.cache/composer/ \
143+ YARN_CACHE_FOLDER=/.cache/yarn/ \
144+ npm_config_cache=/.cache/npm/ \
145+ TIDEWAYS_DAEMON=""
146+
147+ # enable debugging with PhpStorm
148+ ENV PHP_IDE_CONFIG="serverName=localhost"
141149
142150RUN <<EOF
143151 set -e
144152 apt-get update
145153 apt-get upgrade -y
154+ apt-get install -y git
146155 install-php-extensions xdebug
147156 rm -rf /var/cache/apt/archives /var/lib/apt/lists/*
148157EOF
You can’t perform that action at this time.
0 commit comments