Update 'Dockerfile'

This commit is contained in:
Adrian Kuschelyagi Malacoda 2020-01-27 16:55:58 +00:00
parent 87652566c1
commit d6c1dc77f2

View File

@ -8,7 +8,8 @@ WORKDIR /
# Install composer
RUN apt-get -y update && apt-get install -y --no-install-recommends git zip
RUN curl --silent --show-error https://getcomposer.org/installer | php
RUN curl --silent --show-error https://getcomposer.org/installer | php && \
chmod +x composer.phar && mv composer.phar /usr/local/bin/composer
# Install extensions
ADD add_extension.sh /add_extension.sh