diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index 54d866a..4c0fd35 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -6,7 +6,7 @@ on: branches: - master schedule: - - cron: 00 4 * * * + - cron: 00 4 * * 4 jobs: build: diff --git a/Dockerfile.php7 b/Dockerfile.php7 index fbc740d..41840ea 100644 --- a/Dockerfile.php7 +++ b/Dockerfile.php7 @@ -64,6 +64,8 @@ RUN curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* +RUN npm install -g npm@latest + RUN docker-php-ext-install bz2 \ && install-php-extensions apcu gd gmp intl opcache pdo_mysql pdo_pgsql sockets zip imap mailparse soap mysqli bcmath \ && apt-get autoremove \ diff --git a/Dockerfile.php8 b/Dockerfile.php8 index cefcbc2..d210073 100644 --- a/Dockerfile.php8 +++ b/Dockerfile.php8 @@ -64,6 +64,8 @@ RUN curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* +RUN npm install -g npm@latest + RUN docker-php-ext-install bz2 \ && install-php-extensions apcu gd gmp intl opcache pdo_mysql pdo_pgsql sockets zip imap mailparse soap mysqli bcmath \ && apt-get autoremove \