We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e510b80 commit ada84d5Copy full SHA for ada84d5
docker/Dockerfile-php
@@ -48,10 +48,9 @@ RUN apk add --no-cache \
48
# for zip extension
49
libzip
50
51
-
52
# Get the extensions from build stage
53
-# The no-debug-* dir will change with PHP versions
54
-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
55
COPY --from=build /usr/local/etc/php/conf.d/* /usr/local/etc/php/conf.d/
56
57
# Install composer
0 commit comments