File tree 2 files changed +6
-7
lines changed
2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 28
28
with :
29
29
context : .
30
30
file : ./Dockerfile
31
- platforms : linux/amd64,linux/arm64
31
+ platforms : linux/amd64
32
32
push : false
33
33
tags : |
34
34
${{ steps.docker_meta_ci.outputs.tags }}
@@ -113,7 +113,7 @@ jobs:
113
113
with :
114
114
context : .
115
115
file : ./Dockerfile
116
- platforms : linux/amd64,linux/arm64
116
+ platforms : linux/amd64
117
117
push : ${{ github.event_name != 'pull_request' }}
118
118
tags : |
119
119
${{ steps.docker_meta.outputs.tags }}
Original file line number Diff line number Diff line change @@ -27,11 +27,10 @@ RUN set -x; \
27
27
curl \
28
28
libzip-dev \
29
29
unzip \
30
- && arch=$(arch | sed s/aarch64/arm64/ | sed s/x86_64/amd64/) \
31
- && wget "https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox_0.12.6-1.buster_${arch}.deb" \
32
- && chmod a+x "./wkhtmltox_0.12.6-1.buster_${arch}.deb" \
33
- && apt-get install -y "./wkhtmltox_0.12.6-1.buster_${arch}.deb" \
34
- && rm "./wkhtmltox_0.12.6-1.buster_${arch}.deb" \
30
+ && 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 \
35
34
&& docker-php-ext-install -j$(nproc) dom pdo pdo_mysql zip tidy \
36
35
&& docker-php-ext-configure ldap \
37
36
&& docker-php-ext-install -j$(nproc) ldap \
You can’t perform that action at this time.
0 commit comments