Update dockerfile for https in composer installer (#478)

This commit is contained in:
Steve Colson
2018-12-20 07:01:09 -05:00
committed by Kevin Papst
parent ed8efcf139
commit 137fd69f47

View File

@@ -7,7 +7,7 @@ FROM php:7.2.9-apache-stretch
WORKDIR /opt/kimai
RUN php -r "readfile('http://getcomposer.org/installer');" | php -- --install-dir=/usr/bin/ --filename=composer && \
RUN php -r "readfile('https://getcomposer.org/installer');" | php -- --install-dir=/usr/bin/ --filename=composer && \
apt update && \
apt install -y \
git \