Update docker images to PHP 8.4

This commit is contained in:
Alejandro Celaya 2024-11-30 13:53:19 +01:00
parent 3f30af4794
commit ede58efe96
4 changed files with 21 additions and 4 deletions

View File

@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com), and this project adheres to [Semantic Versioning](https://semver.org).
# [Unreleased]
### Added
* *Nothing*
### Changed
* * [#2281](https://github.com/shlinkio/shlink/issues/2281) Update docker image to PHP 8.4
### Deprecated
* *Nothing*
### Removed
* *Nothing*
### Fixed
* *Nothing*
# [4.3.1] - 2024-11-25
### Added
* *Nothing*

View File

@ -1,4 +1,4 @@
FROM php:8.3-alpine3.20 AS base
FROM php:8.4-alpine3.20 AS base
ARG SHLINK_VERSION=latest
ENV SHLINK_VERSION ${SHLINK_VERSION}
@ -36,7 +36,7 @@ RUN apk add --no-cache --virtual .phpize-deps ${PHPIZE_DEPS} unixodbc-dev && \
apk del .phpize-deps
# Install shlink
FROM base as builder
FROM base AS builder
COPY . .
COPY --from=composer:2 /usr/bin/composer ./composer.phar
RUN apk add --no-cache git && \

View File

@ -1,4 +1,4 @@
FROM php:8.3-fpm-alpine3.20
FROM php:8.4-fpm-alpine3.20
MAINTAINER Alejandro Celaya <alejandro@alejandrocelaya.com>
ENV APCU_VERSION 5.1.24

View File

@ -1,4 +1,4 @@
FROM php:8.3-alpine3.20
FROM php:8.4-alpine3.20
MAINTAINER Alejandro Celaya <alejandro@alejandrocelaya.com>
ENV PDO_SQLSRV_VERSION 5.12.0