Skip to content
Merged
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: 2 additions & 3 deletions docker/Dockerfile-php
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,9 @@ RUN apk add --no-cache \
# for zip extension
libzip


# Get the extensions from build stage
# The no-debug-* dir will change with PHP versions
COPY --from=build /usr/local/lib/php/extensions/no-debug-non-zts-20240924/* /usr/local/lib/php/extensions/no-debug-non-zts-20240924/
# Copy the entire extensions folder including the sub-directory
COPY --from=build /usr/local/lib/php/extensions/ /usr/local/lib/php/extensions
COPY --from=build /usr/local/etc/php/conf.d/* /usr/local/etc/php/conf.d/

# Install composer
Expand Down