Skip to content

Commit fc2dc51

Browse files
Merge commit '1c5bde7881801181460d7a32a21066bed73125df'
2 parents e6ca54e + 1c5bde7 commit fc2dc51

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/docker-publish.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ jobs:
5757
curl -L https://ipinfo.io/data/free/country_asn.mmdb?token=${{ secrets.IPINFO_APIKEY }} -o backend/country_asn.mmdb
5858
fi
5959
60+
# Set up QEMU for multi-arch builds
61+
- name: Set up QEMU
62+
uses: docker/setup-qemu-action@v3
63+
6064
# Set up BuildKit Docker container builder to be able to build
6165
# multi-platform images and export cache
6266
# https://github.com/docker/setup-buildx-action

Dockerfile.alpine

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
FROM php:8-alpine
1+
FROM php:8.3-alpine3.19
22

33
# Use the mlocati helper to install PHP extensions in a platform-agnostic way.
44
ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
55

66
# Install runtime packages and let the helper install/compile PHP extensions
7-
RUN apk add --quiet --no-cache \
7+
RUN apk add --no-cache \
88
bash \
99
apache2 \
1010
wget \
1111
curl \
12-
&& apk add --quiet --no-cache --virtual .build-deps \
12+
&& apk add --no-cache --virtual .build-deps \
1313
build-base \
1414
autoconf \
1515
libpng-dev \

0 commit comments

Comments
 (0)