File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ RUN echo "UTC" > /etc/timezone
55
66# Install essential build tools
77RUN apk add --update --no-cache \
8- g++ autoconf \
8+ g++ autoconf make \
99 git bash \
1010 npm yarn \
1111# soap
@@ -25,7 +25,6 @@ ENV PATH ./vendor/bin:/composer/vendor/bin:$PATH
2525ENV COMPOSER_ALLOW_SUPERUSER 1
2626RUN curl -s https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin/ --filename=composer
2727
28-
2928# Preinstalled with
3029# ctype curl date dom fileinfo filter ftp hash
3130# iconv json libxml mbstring mysqlnd openssl
@@ -48,4 +47,7 @@ RUN pecl install xdebug
4847RUN docker-php-ext-enable xdebug
4948RUN echo 'xdebug.mode="coverage"' >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
5049
50+ RUN rm -rf /tmp/*
51+ RUN apk del g++ autoconf make libxml2-dev libzip-dev openssl-dev libpng-dev
52+
5153ENTRYPOINT ['bash' ]
You can’t perform that action at this time.
0 commit comments