-
Notifications
You must be signed in to change notification settings - Fork 5
feat: add docker environment to run the checks locally #57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
591ee26
feat: add docker environment to run the checks locally
YvesCesar 50cf1f5
Update compose.yml
YvesCesar d9dca95
refactor: use install-php-extensions in the docker image
YvesCesar 913e636
refactor: set the container user from HOST_UID/HOST_GID with default …
YvesCesar 53b11a2
fix: isolate JavaRuntimeServiceTest from the repository tmp directory
YvesCesar c218680
docs: drop the tmp cleanup note from the docker section
YvesCesar 7ad3c91
Update README.md
YvesCesar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,15 @@ | ||
| FROM php:8.4-cli | ||
|
|
||
| # zip: ZipArchive in JSignPdfRuntimeService | sockets: donatj/mock-webserver in the tests | ||
| ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/ | ||
| RUN chmod uga+x /usr/local/bin/install-php-extensions && sync \ | ||
| && install-php-extensions \ | ||
| sockets \ | ||
| zip \ | ||
| @composer \ | ||
| && rm /usr/local/bin/install-php-extensions | ||
|
|
||
| # PharData exceeds the default 128M just to open the JRE tarball | ||
| RUN echo 'memory_limit=512M' > /usr/local/etc/php/conf.d/app.ini | ||
|
|
||
| WORKDIR /app |
This file contains hidden or 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 hidden or 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 @@ | ||
| services: | ||
| php: | ||
| build: . | ||
| # export HOST_UID/HOST_GID if yours are not 1000, so the files it writes are yours (see: id -u; id -g) | ||
| user: "${HOST_UID:-1000}:${HOST_GID:-1000}" | ||
| environment: | ||
| COMPOSER_HOME: ${COMPOSER_HOME:-/tmp/composer} | ||
| volumes: | ||
| - .:/app |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.