Skip to content
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

Upgrade to Alpine 3.19, closes #205. #206

Merged
merged 1 commit into from
Dec 8, 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
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE_CHECK_UPSTREAM_DEPENDENCY_ALPINE.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,8 @@ Open tasks:
- [ ] Update local Dockerfile.
- [ ] Add changelog entry.
- [ ] Release new patch release.
- See also:
- [Alpine release branches](https://www.alpinelinux.org/releases/).
- [Alpine news archive](https://www.alpinelinux.org/posts/).
- [Alpine on Docker Hub](https://hub.docker.com/_/alpine).
- [Alpine branches on GitHub](https://github.com/alpinelinux/aports/branches).
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- All CI tasks are configured to have timeouts, closes #201.
- Upgrade dependencies, e.g. Symfony to 7.0 and intermediate Neo4j PHP dependencies as far as possible.
- Deactivate `composer mess` in CI due to upstream issue, tracked in #203.
- Upgrade to Alpine 3.19, closes #205.

## 0.0.37 - 2023-11-24
### Changed
Expand Down
8 changes: 4 additions & 4 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM alpine:3.18 as php_embed
LABEL org.opencontainers.image.source="https://github.com/docker-library/php/tree/master/8.3/alpine3.18/cli" \
org.opencontainers.image.title="Adapted php:8.3-cli-alpine3.18" \
org.opencontainers.image.description="Based on php:8.3-cli-alpine3.18, without sql, with embed."
FROM alpine:3.19 as php_embed
LABEL org.opencontainers.image.source="https://github.com/docker-library/php/tree/master/8.3/alpine3.19/cli" \
org.opencontainers.image.title="Adapted php:8.3-cli-alpine3.19" \
org.opencontainers.image.description="Based on php:8.3-cli-alpine3.19, without sql, with embed."

# dependencies required for running "phpize"
# these get automatically installed and removed by "docker-php-ext-*" (unless they're already installed)
Expand Down