Skip to content

Commit cdc5552

Browse files
committed
Update version of PHP to 8.2.2
1 parent d95e43e commit cdc5552

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
env:
99
APP_NAME: 'manticore-executor'
1010
DOCKER_TAG: 'manticoresearch/manticore-executor'
11-
PHP_VERSION: '8.2.1'
11+
PHP_VERSION: '8.2.2'
1212
MAINTAINER: 'Manticore'
1313
DESC: 'Custom built PHP executor for Manticore.'
1414
EXTRA_NAME: 'manticore-extra'

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
env:
99
APP_NAME: 'manticore-executor'
10-
PHP_VERSION: '8.2.1'
10+
PHP_VERSION: '8.2.2'
1111
MAINTAINER: 'Manticore'
1212
DESC: 'Custom built PHP executor for Manticore.'
1313

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ARG BUILD_DEV=0
55
COPY . /src
66
RUN apk add bash && \
77
cd /src && \
8-
./build-alpine 8.2.1 0 $BUILD_DEV && \
8+
./build-alpine 8.2.2 0 $BUILD_DEV && \
99
mv build/dist/bin/php /usr/bin/manticore-executor && \
1010
ln -s /usr/bin/manticore-executor /usr/bin/php && \
1111
cd ../..
@@ -20,5 +20,5 @@ RUN test "$BUILD_DEV" -eq 1 && php -r "copy('https://getcomposer.org/installer',
2020
WORKDIR /src
2121

2222
# Build on silicon chip mac:
23-
# docker buildx build --build-arg BUILD_DEV=0 --platform linux/amd64,linux/arm64 -t manticoresearch/manticore-executor:0.6.1 --push .
24-
# docker buildx build --build-arg BUILD_DEV=1 --platform linux/amd64,linux/arm64 -t manticoresearch/manticore-executor:0.6.1-dev --push .
23+
# docker buildx build --build-arg BUILD_DEV=0 --platform linux/amd64,linux/arm64 -t manticoresearch/manticore-executor:0.6.4 --push .
24+
# docker buildx build --build-arg BUILD_DEV=1 --platform linux/amd64,linux/arm64 -t manticoresearch/manticore-executor:0.6.4-dev --push .

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Manticore Executor is a custom built PHP binary which:
2828

2929
By default, we disable all extensions and enable only those required to run our scripts.
3030

31-
We build executor from `PHP 8.2.1` with the following extensions enabled and compiled into the executable statically:
31+
We build executor from `PHP 8.2.2` with the following extensions enabled and compiled into the executable statically:
3232

3333
* pcntl
3434
* posix
@@ -83,13 +83,13 @@ Several scripts used to build the final package:
8383
* `build-linux`
8484
* `build-osx`
8585

86-
The scripts accept a version of PHP as a parameter. The current version is `8.2.1`. To build the binary, you should run the following example:
86+
The scripts accept a version of PHP as a parameter. The current version is `8.2.2`. To build the binary, you should run the following example:
8787

8888
```bash
89-
./build-linux "8.2.1"
89+
./build-linux "8.2.2"
9090
```
9191

92-
The command above will build the package on Linux with **PHP** `8.2.1`. Once it's done, you can find your binary in folder `dist/bin`.
92+
The command above will build the package on Linux with **PHP** `8.2.2`. Once it's done, you can find your binary in folder `dist/bin`.
9393

9494
### Build for MacOS arm64
9595

0 commit comments

Comments
 (0)