From a779f205796edbba46693c2460ea3015fb78dc11 Mon Sep 17 00:00:00 2001 From: Hakan Date: Sun, 18 May 2025 10:30:49 +0200 Subject: [PATCH] feat: Fix Docker Compose --- Dockerfile | 4 ++-- docker-compose.yaml | 1 + renovate.json | 5 +++++ 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 29b0329a2..51fb0525f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -ARG GO_VERSION=1.21-alpine3.18 -ARG FROM_IMAGE=alpine:3.18 +ARG GO_VERSION=1.24-alpine3.21 +ARG FROM_IMAGE=alpine:3.21 FROM --platform=${BUILDPLATFORM} golang:${GO_VERSION} AS builder diff --git a/docker-compose.yaml b/docker-compose.yaml index 94e56be43..7ec86c3b2 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -4,6 +4,7 @@ services: build: context: ./ dockerfile: Dockerfile + restart: always ports: - 8080:80 networks: diff --git a/renovate.json b/renovate.json index 612bfa3ac..662e8b826 100644 --- a/renovate.json +++ b/renovate.json @@ -17,6 +17,11 @@ "patch" ], "automerge": true + }, + { + "matchDatasources": ["docker"], + "matchPackageNames": ["whitesource/renovate"], + "versioning": "semver" } ] }