File tree Expand file tree Collapse file tree 4 files changed +28
-4
lines changed
Expand file tree Collapse file tree 4 files changed +28
-4
lines changed Original file line number Diff line number Diff line change 11.idea
2- * /* .logs
2+ * /* .log
33NOTES * .md
44trivy- * -results.json
Original file line number Diff line number Diff line change 1+ # Version 0.2.0
2+
3+ ### Add
4+
5+ * CHANGELOG.md
6+ * .dockerignore
7+
8+ ### Change
9+
10+ * .gitignore now includes log and scanning output rules
11+ * ImageMagick version bumped to 7.1.2.15, tests.yaml aligned to ensure new version
12+ * PHP version bumped to 8.5.3
13+ * Swoole version bumped to 6.2.0
14+
15+ ### Fixes
16+
17+ * README.md usage instructions more detailed
18+
19+ ### Miscellaneous
20+
21+ ### Removed
22+
Original file line number Diff line number Diff line change 1- ARG BASEIMAGE="php:8.4.18 -cli-alpine3.23"
1+ ARG BASEIMAGE="php:8.5.3 -cli-alpine3.23"
22
33FROM $BASEIMAGE AS compile
44
55ENV PHP_REDIS_VERSION="6.3.0" \
6- PHP_SWOOLE_VERSION="v6.1.7 " \
6+ PHP_SWOOLE_VERSION="6.2.0 " \
77 PHP_IMAGICK_VERSION="3.8.1" \
88 PHP_MONGODB_VERSION="2.2.1" \
99 PHP_YAML_VERSION="2.3.0" \
5454# # Swoole Extension
5555FROM compile AS swoole
5656RUN \
57- git clone --depth 1 --branch $PHP_SWOOLE_VERSION https://github.com/swoole/swoole-src.git && \
57+ git clone --depth 1 --branch v $PHP_SWOOLE_VERSION https://github.com/swoole/swoole-src.git && \
5858 cd swoole-src && \
5959 phpize && \
6060 ./configure --enable-sockets --enable-http2 --enable-openssl --enable-swoole-curl && \
Original file line number Diff line number Diff line change @@ -71,6 +71,8 @@ docker run appwrite/base:latest php -m| tee "run-$(date +%s).log"
7171
7272## Push
7373
74+ Note: Build of the image and push to the registry shoudl be handle by automation.
75+
7476``` bash
7577docker push appwrite/base:latest | tee " push-$( date +%s) .log"
7678```
You can’t perform that action at this time.
0 commit comments