From faffcadc45159c0b4d7f8cff041e5fc4c227596b Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 20 Jul 2022 13:05:12 +1000 Subject: [PATCH 1/2] Prep container for PHP 8.1 --- alpine/5/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/alpine/5/Dockerfile b/alpine/5/Dockerfile index 523a573..69d255d 100644 --- a/alpine/5/Dockerfile +++ b/alpine/5/Dockerfile @@ -1,4 +1,4 @@ -ARG PHP_VERSION=7.4 +ARG PHP_VERSION=8.1 ARG BAK_STORAGE_PATH=/var/www/app/docker-backup-storage/ ARG BAK_PUBLIC_PATH=/var/www/app/docker-backup-public/ @@ -28,7 +28,7 @@ RUN --mount=target=/var/www/app/node_modules,type=cache \ && mv /var/www/app/public $BAK_PUBLIC_PATH # Prepare php image -FROM php:${PHP_VERSION}-fpm-alpine3.13 as prod +FROM php:${PHP_VERSION}-fpm-alpine3.15 as prod LABEL maintainer="David Bomba " From 5188c45b412173f8ed328ea994bad682f6d80c1c Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 6 Oct 2022 12:34:52 +1100 Subject: [PATCH 2/2] Upgrade fonts --- alpine/5/Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/alpine/5/Dockerfile b/alpine/5/Dockerfile index 69d255d..bb22303 100644 --- a/alpine/5/Dockerfile +++ b/alpine/5/Dockerfile @@ -53,6 +53,18 @@ RUN install-php-extensions \ # Install chromium RUN set -eux; \ apk add --no-cache \ + font-isas-misc \ + terminus-font \ + font-noto \ + font-noto-thai \ + font-noto-tibetan \ + font-ipa \ + font-sony-misc \ + font-daewoo-misc \ + font-noto-hebrew \ + font-noto-lao \ + font-arabic-misc \ + font-jis-misc \ supervisor \ mysql-client \ git \