-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
344d6a3
commit f563811
Showing
1 changed file
with
10 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ FROM alpine:latest | |
|
||
MAINTAINER Ricardo Monteiro e Lima <[email protected]> | ||
|
||
RUN apk add --update --upgrade bash git curl | ||
RUN apk add --update --upgrade bash git curl openssl | ||
|
||
RUN apk add php7 \ | ||
#REQUIRED BY COMPOSER | ||
|
@@ -25,8 +25,17 @@ RUN apk add php7 \ | |
php7-memcached \ | ||
#REQUIRED BY LUMEN & ARTISAN (migrate) | ||
php7-pdo_mysql \ | ||
#REQUIRED BY PHPUNIT | ||
php7-iconv \ | ||
#REQUIRED BY PHPUNIT | ||
php7-dom \ | ||
php7-fpm | ||
|
||
#INSTALLING PHPUNIT | ||
RUN wget https://phar.phpunit.de/phpunit.phar && \ | ||
chmod +x phpunit.phar && \ | ||
mv phpunit.phar /usr/local/bin/phpunit | ||
|
||
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \ | ||
composer self-update | ||
|
||
|