From d4b87b70bf59db8b61518ec9be39f90fbdc04dbd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 10:18:26 +0000 Subject: [PATCH] chore(deps): update all non-major dockerfile dependencies --- Dockerfile.apisix | 2 +- Dockerfile.service | 2 +- Dockerfile.standalone | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile.apisix b/Dockerfile.apisix index b757c0186..0d741b73e 100644 --- a/Dockerfile.apisix +++ b/Dockerfile.apisix @@ -16,7 +16,7 @@ RUN wget -q -O hivemind.gz https://github.com/DarthSim/hivemind/releases/downloa # get daprd RUN wget -q https://github.com/dapr/dapr/releases/download/v$DAPR_VERSION/daprd_linux_amd64.tar.gz -O - | tar -xzvf - daprd -FROM apache/apisix:3.9.1-debian +FROM apache/apisix:3.11.0-debian USER root ENV DAPR_APP_ID=gateway # DAPR_HTTP_READ_BUFFER_SIZE: default 4KB diff --git a/Dockerfile.service b/Dockerfile.service index 6a073b596..5d8aab446 100644 --- a/Dockerfile.service +++ b/Dockerfile.service @@ -25,7 +25,7 @@ RUN mkdir -p migrations RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-X main.Version=${VERSION}" -a -o app . -FROM alpine:3.20.2 AS production +FROM alpine:3.20.3 AS production WORKDIR /app diff --git a/Dockerfile.standalone b/Dockerfile.standalone index 08ec35061..8ae6943a1 100644 --- a/Dockerfile.standalone +++ b/Dockerfile.standalone @@ -40,7 +40,7 @@ RUN mkdir -p migrations RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-X main.Version=${VERSION}" -a -o app . -FROM debian:12.6 AS deps +FROM debian:12.7 AS deps # renovate: datasource=github-releases depName=DarthSim/hivemind ARG HIVEMIND_VERSION=1.1.0 @@ -63,7 +63,7 @@ RUN wget -q https://github.com/golang-migrate/migrate/releases/download/v$MIGRAT # get daprd RUN wget -q https://github.com/dapr/dapr/releases/download/v$DAPR_VERSION/daprd_linux_amd64.tar.gz -O - | tar -xzvf - daprd -FROM alpine:3.20.2 AS production +FROM alpine:3.20.3 AS production RUN apk update && apk add postgresql-client --no-cache