-
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.
Merge pull request #1 from kiboko-labs/refatoring/symfony-app
Refactoring as a Symfony 4.x app
- Loading branch information
Showing
164 changed files
with
7,357 additions
and
1,249 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,65 @@ | ||
FROM kiboko/php:7.2-cli-xdebug | ||
|
||
LABEL maintainer="Grégory Planchat <[email protected]>" | ||
|
||
RUN set -ex\ | ||
&& apk add \ | ||
wget \ | ||
autoconf \ | ||
bash \ | ||
binutils \ | ||
expat \ | ||
file \ | ||
g++ \ | ||
gcc \ | ||
m4 \ | ||
make \ | ||
git \ | ||
nodejs \ | ||
npm \ | ||
&& update-ca-certificates | ||
|
||
RUN apk add --update mysql-dev \ | ||
&& docker-php-ext-configure pdo_mysql \ | ||
&& docker-php-ext-install pdo_mysql \ | ||
&& docker-php-ext-configure mysqli \ | ||
&& docker-php-ext-install mysqli \ | ||
&& apk del mysql-dev | ||
|
||
RUN apk del \ | ||
autoconf \ | ||
bash \ | ||
binutils \ | ||
expat \ | ||
file \ | ||
g++ \ | ||
gcc \ | ||
gdbm \ | ||
gmp \ | ||
isl \ | ||
libatomic \ | ||
libbz2 \ | ||
libc-dev \ | ||
libffi \ | ||
libgcc \ | ||
libgomp \ | ||
libldap \ | ||
libltdl \ | ||
libmagic \ | ||
libstdc++ \ | ||
libtool \ | ||
m4 \ | ||
make \ | ||
mpc1 \ | ||
mpfr3 \ | ||
musl-dev \ | ||
perl \ | ||
pkgconf \ | ||
pkgconfig \ | ||
python \ | ||
re2c \ | ||
readline \ | ||
sqlite-libs \ | ||
&& rm -rf /tmp/* /var/cache/apk/* | ||
|
||
WORKDIR /var/www/html |
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,70 @@ | ||
FROM kiboko/php:7.2-cli-blackfire | ||
|
||
LABEL maintainer="Grégory Planchat <[email protected]>" | ||
|
||
RUN set -ex\ | ||
&& apk add \ | ||
wget \ | ||
autoconf \ | ||
bash \ | ||
binutils \ | ||
expat \ | ||
file \ | ||
g++ \ | ||
gcc \ | ||
m4 \ | ||
make \ | ||
git \ | ||
nodejs \ | ||
npm \ | ||
&& update-ca-certificates | ||
|
||
RUN apk add --update mysql-dev \ | ||
&& docker-php-ext-configure pdo_mysql \ | ||
&& docker-php-ext-install pdo_mysql \ | ||
&& docker-php-ext-configure mysqli \ | ||
&& docker-php-ext-install mysqli \ | ||
&& apk del mysql-dev | ||
|
||
RUN apk del \ | ||
autoconf \ | ||
bash \ | ||
binutils \ | ||
expat \ | ||
file \ | ||
g++ \ | ||
gcc \ | ||
gdbm \ | ||
gmp \ | ||
isl \ | ||
libatomic \ | ||
libbz2 \ | ||
libc-dev \ | ||
libffi \ | ||
libgcc \ | ||
libgomp \ | ||
libldap \ | ||
libltdl \ | ||
libmagic \ | ||
libstdc++ \ | ||
libtool \ | ||
m4 \ | ||
make \ | ||
mpc1 \ | ||
mpfr3 \ | ||
musl-dev \ | ||
perl \ | ||
pkgconf \ | ||
pkgconfig \ | ||
python \ | ||
re2c \ | ||
readline \ | ||
sqlite-libs \ | ||
&& rm -rf /tmp/* /var/cache/apk/* | ||
|
||
RUN pwd && curl -LSs https://box-project.github.io/box2/installer.php | php \ | ||
&& mv box.phar /usr/local/bin/box \ | ||
&& chmod 0755 /usr/local/bin/box \ | ||
&& echo "phar.readonly=0" >> /usr/local/etc/php/conf.d/phar.ini | ||
|
||
WORKDIR /var/www/html |
This file was deleted.
Oops, something went wrong.
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,4 @@ | ||
/.env | ||
/bin/bisous.phar | ||
/bisous-phar-private.pem | ||
/bisous-phar-private-nopassphrase.pem |
Oops, something went wrong.