-
Notifications
You must be signed in to change notification settings - Fork 35
chore: bump telemetry #200
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+209
−206
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,7 +17,7 @@ FROM php:8.3-cli-alpine AS final | |
| LABEL maintainer="[email protected]" | ||
|
|
||
| ENV DEBIAN_FRONTEND=noninteractive \ | ||
| PHP_VERSION=82 | ||
| PHP_VERSION=83 | ||
|
|
||
| RUN \ | ||
| apk add --no-cache --virtual .deps \ | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🌐 Web query:
Alpine Linux php83 php83-fpm packages availability repositories💡 Result:
php83 and php83-fpm are available in Alpine’s community repository (edge and recent stable branches — v3.21/v3.22/v3.23) for common architectures (x86/x86_64, aarch64, etc.). See Alpine’s package pages for php83 and php83-fpm. (pkgs.alpinelinux.org)
There are also third‑party/prebuilt php83 packages (Zend’s APK repository) providing php83zend-* and php83zend-fpm builds. (repos.zend.com)
If you want exact apk repository lines to enable on an Alpine release (e.g., v3.22 or v3.23) or the command to install (apk add php83 php83-fpm), tell me your Alpine version and CPU architecture and I’ll give the exact repo line and install command.
Citations:
🏁 Script executed:
Repository: utopia-php/http
Length of output: 280
🏁 Script executed:
Repository: utopia-php/http
Length of output: 93
🏁 Script executed:
Repository: utopia-php/http
Length of output: 1339
🌐 Web query:
Alpine Linux PHP 8.3 FPM configuration path /etc/php/83/fpm💡 Result:
On Alpine the PHP‑8.3 FPM config lives under /etc/php8.3/ (files: /etc/php8.3/php-fpm.conf, /etc/php8.3/php-fpm.d/*.conf, /etc/php8.3/php.ini). The service/binary is typically named php-fpm83 (or php-fpm8.3). [1][2][3]
Sources:
[1] Alpine Wiki — Apache with php‑fpm (shows php‑fpm83 service and /etc/php8/... usage).
[2] CloudSpinx — How to install Nginx with PHP‑FPM on Alpine (example listing /etc/php8.3/).
[3] Example Alpine PHP‑8.3 setup scripts / Docker images using php83 packages and php-fpm83.
🏁 Script executed:
Repository: utopia-php/http
Length of output: 118
Critical: Alpine PHP 8.3 path structure is incorrect — change will fail at runtime.
The
php83,php83-fpm, andphp83-mbstringpackages are available in Alpine's community repository ✓, but the path on line 32 is incorrect. Alpine PHP 8.3 uses/etc/php8.3/(not/etc/php/83/), so the Dockerfile will fail when attempting to copywww.confto a non-existent directory.Change line 32 from:
to:
Alternatively, if maintaining the
PHP_VERSIONvariable, redefine it toPHP_VERSION=8.3and adjust the path reference to/etc/php${PHP_VERSION}/php-fpm.d/or hardcode the correct Alpine path structure.🤖 Prompt for AI Agents