Skip to content

Commit

Permalink
chore: molireali
Browse files Browse the repository at this point in the history
  • Loading branch information
petrknap committed Oct 18, 2023
1 parent 4c28388 commit 03795de
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
custom: https://petrknap.github.io/donate.html
2 changes: 1 addition & 1 deletion .github/workflows/linter-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ jobs:
image: hadolint/hadolint:latest-alpine
steps:
- uses: actions/checkout@v3
- run: find . -name 'Dockerfile' -or -name '*.dockerfile' -exec hadolint {} \;
- run: find . -name 'Dockerfile' -or -name '*.dockerfile' | xargs -trn 1 hadolint
2 changes: 1 addition & 1 deletion .github/workflows/linter-php.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ jobs:
image: php:8.0-cli-alpine
steps:
- uses: actions/checkout@v3
- run: find . -name '*.php' -exec php -l {} \;
- run: find . -name '*.php' | xargs -trn 1 php -l
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RUN apt-get update \
libmcrypt-dev \
libpng-dev \
&& docker-php-ext-configure gd \
&& docker-php-ext-install -j$(nproc) gd \
&& docker-php-ext-install -j"$(nproc)" gd \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
;
Expand Down

0 comments on commit 03795de

Please sign in to comment.