Skip to content

Commit 90e9ef1

Browse files
Chore(deps): Bump the all-docker group with 2 updates
Bumps the all-docker group with 2 updates: golang and alpine. Updates `golang` from 1.25.4-alpine to 1.25.5-alpine Updates `alpine` from 3.22 to 3.23 --- updated-dependencies: - dependency-name: golang dependency-version: 1.25.5-alpine dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-docker - dependency-name: alpine dependency-version: '3.23' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-docker ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 6036d73 commit 90e9ef1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# To push:
44
# make docker-push
55

6-
FROM golang:1.25.4-alpine AS build
6+
FROM golang:1.25.5-alpine AS build
77
ARG GIT_COMMIT
88

99
ENV CGO_ENABLED=0 GOOS=linux
@@ -14,7 +14,7 @@ COPY . ./
1414
RUN go build -o /bin/stellar-disbursement-platform -ldflags "-X main.GitCommit=$GIT_COMMIT" .
1515

1616

17-
FROM alpine:3.22
17+
FROM alpine:3.23
1818

1919
RUN apk add --no-cache ca-certificates
2020
# ADD migrations/ /app/migrations/

Dockerfile.development

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Stage 1: Build the Go application
2-
FROM golang:1.25.4-alpine AS build
2+
FROM golang:1.25.5-alpine AS build
33
ARG GIT_COMMIT
44

55
WORKDIR /src/stellar-disbursement-platform
@@ -9,7 +9,7 @@ COPY . ./
99
RUN go build -o /bin/stellar-disbursement-platform -ldflags "-X main.GitCommit=$GIT_COMMIT" .
1010

1111
# Stage 2: Setup the development environment with Delve for debugging
12-
FROM golang:1.25.4-alpine AS development
12+
FROM golang:1.25.5-alpine AS development
1313

1414
# set workdir according to repo structure so remote debug source code is in sync
1515
WORKDIR /app/github.com/stellar/stellar-disbursement-platform

0 commit comments

Comments
 (0)