Skip to content
This repository was archived by the owner on Dec 6, 2025. It is now read-only.

Commit 265bbd8

Browse files
chore(deps): update alpine docker tag to v3.21.0 (#900)
* chore(deps): update alpine docker tag to v3.21.0 * bump dev-go version --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Max Baumann <[email protected]>
1 parent aefa301 commit 265bbd8

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/cicd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212

1313
env:
1414
# renovate: dev-tag
15-
DEV_TAG: '16'
15+
DEV_TAG: '17'
1616

1717
jobs:
1818

Dockerfile.service

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RUN mkdir -p migrations
2525

2626
RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-X main.Version=${VERSION}" -a -o app .
2727

28-
FROM alpine:3.20.3 AS production
28+
FROM alpine:3.21.0 AS production
2929

3030
WORKDIR /app
3131

Dockerfile.standalone

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ RUN wget -q https://github.com/golang-migrate/migrate/releases/download/v$MIGRAT
6464
# get daprd
6565
RUN wget -q https://github.com/dapr/dapr/releases/download/v$DAPR_VERSION/daprd_linux_amd64.tar.gz -O - | tar -xzvf - daprd
6666

67-
FROM alpine:3.20.3 AS production
67+
FROM alpine:3.21.0 AS production
6868

6969
RUN apk update && apk add postgresql-client --no-cache
7070

dev/docker-compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ services:
104104
context: ../images/dev-go-custom
105105
args:
106106
# renovate: dev-tag
107-
TAG: '16'
107+
TAG: '17'
108108
UID: ${UID:-1000}
109109
GID: ${GID:-1000}
110110
volumes:
@@ -148,7 +148,7 @@ services:
148148
context: ../images/dev-go-custom
149149
args:
150150
# renovate: dev-tag
151-
TAG: '16'
151+
TAG: '17'
152152
UID: ${UID:-1000}
153153
GID: ${GID:-1000}
154154
volumes:

images/dev-go/update-dev-tag.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e
55

66
# update this value, when you update the Dockerfile
77
# renovate: dev-tag
8-
TAG='16'
8+
TAG='17'
99

1010
# go to repo root
1111
cd $(git rev-parse --show-toplevel)

0 commit comments

Comments
 (0)