We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 81f15f0 + 7cf0d47 commit a5f25c1Copy full SHA for a5f25c1
.github/workflows/release.yml
@@ -24,7 +24,7 @@ jobs:
24
with:
25
context: .
26
file: ./Dockerfile
27
- platforms: linux/amd64
+ platforms: linux/amd64,linux/arm64
28
push: false
29
tags: |
30
${{ steps.docker_meta_ci.outputs.tags }}
@@ -96,7 +96,7 @@ jobs:
96
97
98
99
100
push: ${{ github.event_name != 'pull_request' }}
101
102
${{ steps.docker_meta.outputs.tags }}
Dockerfile
@@ -27,10 +27,11 @@ RUN set -x; \
curl \
libzip-dev \
unzip \
- && wget https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox_0.12.6-1.buster_amd64.deb \
31
- && chmod a+x ./wkhtmltox_0.12.6-1.buster_amd64.deb \
32
- && apt-get install -y ./wkhtmltox_0.12.6-1.buster_amd64.deb \
33
- && rm ./wkhtmltox_0.12.6-1.buster_amd64.deb \
+ && arch=$(arch | sed s/aarch64/arm64/ | sed s/x86_64/amd64/) \
+ && wget "https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox_0.12.6-1.buster_${arch}.deb" \
+ && chmod a+x "./wkhtmltox_0.12.6-1.buster_${arch}.deb" \
+ && apt-get install -y "./wkhtmltox_0.12.6-1.buster_${arch}.deb" \
34
+ && rm "./wkhtmltox_0.12.6-1.buster_${arch}.deb" \
35
&& docker-php-ext-install -j$(nproc) dom pdo pdo_mysql zip tidy \
36
&& docker-php-ext-configure ldap \
37
&& docker-php-ext-install -j$(nproc) ldap \
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments