File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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.
44ADD --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 \
You can’t perform that action at this time.
0 commit comments