Skip to content

Commit d39bfc5

Browse files
Update Dockerfile
1 parent 3eebe92 commit d39bfc5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
FROM php:7.1-cli
1+
FROM php:7.3-cli
22

33
RUN pecl install xdebug \
44
&& docker-php-ext-enable xdebug
55

66
# Install unzip for composer dependencies
77
RUN apt-get update \
88
&& apt-get install -y --no-install-recommends unzip \
9-
&& apt-get autoremove -y
9+
&& apt-get purge -y --autoremove
1010

1111
ENV COMPOSER_ALLOW_SUPERUSER 1
1212
ENV COMPOSER_HOME /root/.composer
1313

14-
COPY --from=composer:2.0.7 /usr/bin/composer /usr/bin/composer
14+
COPY --from=composer:2.0.11 /usr/bin/composer /usr/bin/composer
1515

1616
WORKDIR /application
1717

0 commit comments

Comments
 (0)