-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Atualizada a configuração do App para adicionar a biblioteca de Zip a…
…o servidor.
- Loading branch information
1 parent
4aa8b62
commit 569f93e
Showing
4 changed files
with
13 additions
and
5 deletions.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
.DS_Store |
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
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
FROM php:7.0.4-fpm | ||
FROM php:7.1.9-fpm | ||
|
||
RUN apt-get update | ||
RUN apt-get install -y libmcrypt-dev mysql-client curl libcurl4-openssl-dev git zip unzip | ||
RUN docker-php-ext-install mcrypt curl mbstring pdo_mysql | ||
RUN apt-get install -y libmcrypt-dev libzip-dev libcurl4-openssl-dev mysql-client curl git zip unzip | ||
RUN docker-php-ext-install mcrypt mbstring curl zip pdo pdo_mysql | ||
|
||
RUN curl -sS https://getcomposer.org/installer | php -- --filename=composer --install-dir=/usr/local/bin | ||
|
||
RUN apt-get autoremove -y && apt-get clean all | ||
|
||
WORKDIR /var/www | ||
WORKDIR /var/www |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<?php | ||
phpinfo(); | ||
?> |