2019-10-09 19:21:06 +00:00
|
|
|
FROM bash AS build
|
2019-10-09 15:11:51 +00:00
|
|
|
|
2019-10-09 19:21:06 +00:00
|
|
|
COPY install-php-extensions /tmp/install-php-extensions
|
|
|
|
RUN chmod +x /tmp/install-php-extensions
|
|
|
|
|
|
|
|
FROM scratch
|
|
|
|
|
2023-12-14 15:00:29 +00:00
|
|
|
LABEL org.opencontainers.image.source="https://github.com/mlocati/docker-php-extension-installer" \
|
|
|
|
org.opencontainers.image.licenses="MIT"
|
|
|
|
|
2019-10-09 19:21:06 +00:00
|
|
|
COPY --from=build /tmp/install-php-extensions /usr/bin/install-php-extensions
|