Skip to content
Closed
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
4 changes: 2 additions & 2 deletions docker/Dockerfile.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
# ============================================================================
# Stage 2: Build PHP extension
# ============================================================================
FROM php:8.3-cli AS php-builder
FROM php:8.5-cli AS php-builder

ENV DEBIAN_FRONTEND=noninteractive

Expand Down Expand Up @@ -121,7 +121,7 @@
# ============================================================================
# Stage 3: Runtime
# ============================================================================
FROM php:8.3-cli AS runtime
FROM php:8.5-cli AS runtime

RUN apt-get update && apt-get install -y --no-install-recommends \
libc6 \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.php.pecl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Dockerfile for building PECL tarball package
# Creates liblpm-{version}.tgz source package for PECL distribution

FROM php:8.3-cli
FROM php:8.5-cli

ENV DEBIAN_FRONTEND=noninteractive

Expand Down
Loading