-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added docker compose examples to CONTRIBUTING.md * eol should always be LF
- Loading branch information
1 parent
920c549
commit 912a6f4
Showing
5 changed files
with
81 additions
and
21 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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
* text=auto eol=lf | ||
.editorconfig export-ignore | ||
.gitattributes export-ignore | ||
/docs/ export-ignore | ||
/scripts/ export-ignore | ||
/tests/ export-ignore | ||
/.* export-ignore | ||
/.* export-ignore |
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
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,9 @@ | ||
FROM composer:latest AS build | ||
WORKDIR /app | ||
COPY ./ . | ||
COPY ./docker/build.sh . | ||
RUN pwd | ||
RUN ls -al | ||
# Make the script executable | ||
RUN chmod +x build.sh | ||
RUN ./build.sh |
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,5 @@ | ||
echo "Start building ..." | ||
rm -rf vendor | ||
rm -f composer.lock composer.phar | ||
set -xe | ||
composer install |