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
5
5
6
6
# Install essential build tools
7
7
RUN apk add --update --no-cache \
8
- g++ autoconf \
8
+ g++ autoconf make \
9
9
git bash \
10
10
npm yarn \
11
11
# soap
@@ -25,7 +25,6 @@ ENV PATH ./vendor/bin:/composer/vendor/bin:$PATH
25
25
ENV COMPOSER_ALLOW_SUPERUSER 1
26
26
RUN curl -s https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin/ --filename=composer
27
27
28
-
29
28
# Preinstalled with
30
29
# ctype curl date dom fileinfo filter ftp hash
31
30
# iconv json libxml mbstring mysqlnd openssl
@@ -48,4 +47,7 @@ RUN pecl install xdebug
48
47
RUN docker-php-ext-enable xdebug
49
48
RUN echo 'xdebug.mode="coverage"' >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
50
49
50
+ RUN rm -rf /tmp/*
51
+ RUN apk del g++ autoconf make libxml2-dev libzip-dev openssl-dev libpng-dev
52
+
51
53
ENTRYPOINT ['bash' ]
You can’t perform that action at this time.
0 commit comments