Skip to content

Commit b801090

Browse files
authored
Update Dockerfile
1 parent cd73e0f commit b801090

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ RUN echo "UTC" > /etc/timezone
55

66
# Install essential build tools
77
RUN 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
2525
ENV COMPOSER_ALLOW_SUPERUSER 1
2626
RUN 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
4847
RUN docker-php-ext-enable xdebug
4948
RUN 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+
5153
ENTRYPOINT ['bash']

0 commit comments

Comments
 (0)