From 1a663cb57bd341668efd58b4e17f1fce371ed0cf Mon Sep 17 00:00:00 2001 From: Alan Nelson <alan.nelson@nebraska.edu> Date: Mon, 2 Oct 2023 16:18:58 -0500 Subject: [PATCH] Fix NPM package name on PHP 7.x --- php-unit-test/7.3/Dockerfile | 2 +- php-unit-test/7.4/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/php-unit-test/7.3/Dockerfile b/php-unit-test/7.3/Dockerfile index 1e7a5e5..de6e937 100644 --- a/php-unit-test/7.3/Dockerfile +++ b/php-unit-test/7.3/Dockerfile @@ -13,7 +13,7 @@ LABEL org.label-schema.build-date=$BUILD_DATE \ maintainer="Alan Nelson <alan.nelson@nebraska.edu>" RUN export BUILD_DEPS="bzip2-dev icu-dev libpng-dev libzip-dev openldap-dev" \ - && apk add --no-cache bash nodejs nodejs-npm $PHPIZE_DEPS $BUILD_DEPS \ + && apk add --no-cache bash nodejs npm $PHPIZE_DEPS $BUILD_DEPS \ && pecl channel-update pecl.php.net \ && pecl install xdebug-3.1.6 redis \ && docker-php-ext-install bz2 gd intl ldap mysqli pdo_mysql zip \ diff --git a/php-unit-test/7.4/Dockerfile b/php-unit-test/7.4/Dockerfile index 80c63c5..941cee3 100644 --- a/php-unit-test/7.4/Dockerfile +++ b/php-unit-test/7.4/Dockerfile @@ -13,7 +13,7 @@ LABEL org.label-schema.build-date=$BUILD_DATE \ maintainer="Alan Nelson <alan.nelson@nebraska.edu>" RUN export BUILD_DEPS="bzip2-dev icu-dev libpng-dev libzip-dev openldap-dev" \ - && apk add --no-cache bash nodejs nodejs-npm $PHPIZE_DEPS $BUILD_DEPS \ + && apk add --no-cache bash nodejs npm $PHPIZE_DEPS $BUILD_DEPS \ && pecl channel-update pecl.php.net \ && pecl install xdebug-3.1.6 redis \ && docker-php-ext-install bz2 gd intl ldap mysqli pdo_mysql zip \ -- GitLab