Skip to content

Commit 34a74c3

Browse files
authored
Revert "Add arm64 platforms for docker image release"
1 parent 6e42996 commit 34a74c3

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

Diff for: .github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
context: .
3030
file: ./Dockerfile
31-
platforms: linux/amd64,linux/arm64
31+
platforms: linux/amd64
3232
push: false
3333
tags: |
3434
${{ steps.docker_meta_ci.outputs.tags }}
@@ -113,7 +113,7 @@ jobs:
113113
with:
114114
context: .
115115
file: ./Dockerfile
116-
platforms: linux/amd64,linux/arm64
116+
platforms: linux/amd64
117117
push: ${{ github.event_name != 'pull_request' }}
118118
tags: |
119119
${{ steps.docker_meta.outputs.tags }}

Diff for: Dockerfile

+4-5
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,10 @@ RUN set -x; \
2727
curl \
2828
libzip-dev \
2929
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 \
3534
&& docker-php-ext-install -j$(nproc) dom pdo pdo_mysql zip tidy \
3635
&& docker-php-ext-configure ldap \
3736
&& docker-php-ext-install -j$(nproc) ldap \

0 commit comments

Comments
 (0)