diff --git a/Dockerfile b/Dockerfile index f95cc87..0a31352 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,8 @@ RUN php -r "if (hash_file('sha384', 'composer-setup.php') === 'c8b085408188070d5 RUN php composer-setup.php RUN php -r "unlink('composer-setup.php');" RUN mv composer.phar /usr/local/bin/composer -RUN apt-get update -yqq && apt-get install -yqq git gettext-base zip unzip 7zip libzip-dev rsync && rm -rf /var/lib/apt/lists/* +RUN apt-get update -yqq && apt-get install -yqq libmariadb-dev git gettext-base libbz2-dev libpng-dev libicu-dev zip unzip 7zip libzip-dev rsync jq curl && rm -rf /var/lib/apt/lists/* +RUN docker-php-ext-install bcmath bz2 gd intl zip mysqli RUN mv /usr/local/etc/php/php.ini-development /usr/local/etc/php/php.ini #RUN docker-php-ext-install zip diff --git a/README.md b/README.md index 74f538b..9cb2ea6 100644 --- a/README.md +++ b/README.md @@ -20,4 +20,4 @@ docker push git.agaric.com/agaric/deploycontainer:${TAG} docker push git.agaric.com/agaric/deploycontainer:latest ``` -If you need a token for git access to git.drupalcode.org, go to https://git.drupalcode.org/-/user_settings/personal_access_tokens and grant the token api_read access. The token can be tested (i.e. inside a deploycontainer - `docker run -v .:/home/deployer -it agaric/deploycontainer:latest`) with `composer config -g gitlab-token.git.drupalcode.org {your token}` and then running composer install. +If you need a token for git access to git.drupalcode.org, go to https://git.drupalcode.org/-/user_settings/personal_access_tokens and grant the token api_read access. The token can be tested (i.e. inside a deploycontainer - `docker run -v .:/home/deployer -it --rm git.agaric.com/agaric/deploycontainer:latest`) with `composer config -g gitlab-token.git.drupalcode.org {your token}` and then running composer install.