From 6810ec75785908ed61e4a06d1eba4b6b23c6d982 Mon Sep 17 00:00:00 2001 From: Marcel Hernandez Date: Mon, 21 Oct 2024 23:01:53 +0200 Subject: [PATCH] updates --- php/8.1/Dockerfile | 2 +- php/8.2/Dockerfile | 2 +- php/8.3/Dockerfile | 2 +- postgres/Dockerfile | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/php/8.1/Dockerfile b/php/8.1/Dockerfile index f3900ea..179d588 100644 --- a/php/8.1/Dockerfile +++ b/php/8.1/Dockerfile @@ -1,6 +1,6 @@ FROM 1maa/alpine:latest AS build -ARG PHP_VERSION=8.1.29 +ARG PHP_VERSION=8.1.30 ARG SECP256K1_NOSTR_EXT_VERSION=v0.1.3 ENV CFLAGS="-Os -march=x86-64" diff --git a/php/8.2/Dockerfile b/php/8.2/Dockerfile index cdd332e..50277f7 100644 --- a/php/8.2/Dockerfile +++ b/php/8.2/Dockerfile @@ -1,6 +1,6 @@ FROM 1maa/alpine:latest AS build -ARG PHP_VERSION=8.2.23 +ARG PHP_VERSION=8.2.24 ARG SECP256K1_NOSTR_EXT_VERSION=v0.1.3 ENV CFLAGS="-Os -march=x86-64" diff --git a/php/8.3/Dockerfile b/php/8.3/Dockerfile index f5c0b69..10d8be4 100644 --- a/php/8.3/Dockerfile +++ b/php/8.3/Dockerfile @@ -1,6 +1,6 @@ FROM 1maa/alpine:latest AS build -ARG PHP_VERSION=8.3.11 +ARG PHP_VERSION=8.3.12 ARG SECP256K1_NOSTR_EXT_VERSION=v0.1.3 ENV CFLAGS="-Os -march=x86-64" diff --git a/postgres/Dockerfile b/postgres/Dockerfile index cab4c49..7cc92b0 100644 --- a/postgres/Dockerfile +++ b/postgres/Dockerfile @@ -34,7 +34,7 @@ RUN make -C postgresql-${POSTGRES_VERSION} world -j$(nproc) \ FROM 1maa/alpine:latest AS postgis ARG PGTAP_VERSION=1.3.3 -ARG POSTGIS_VERSION=3.4.2 +ARG POSTGIS_VERSION=3.5.0 WORKDIR /tmp @@ -95,7 +95,7 @@ COPY --from=postgis /usr/local/bin/shp2pgsql /usr/local/bin COPY --from=postgis /usr/local/lib/postgis-3.so /usr/local/lib COPY --from=postgis /usr/local/lib/postgis_raster-3.so /usr/local/lib COPY --from=postgis /usr/local/lib/postgis_topology-3.so /usr/local/lib -COPY --from=postgis /usr/local/share/contrib/postgis-3.4 /usr/local/share/contrib/postgis-3.4 +COPY --from=postgis /usr/local/share/contrib/postgis-3.5 /usr/local/share/contrib/postgis-3.5 COPY --from=cleanup /tmp /usr/local/share/extension COPY docker-entrypoint.sh /usr/local/bin