Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Step 1: Modules caching
FROM golang:1.24.4-alpine3.21 as modules
FROM golang:1.24.5-alpine3.21 as modules

COPY go.mod go.sum /modules/

Expand All @@ -8,7 +8,7 @@ WORKDIR /modules
RUN go mod download

# Step 2: Builder
FROM golang:1.24.4-alpine3.21 as builder
FROM golang:1.24.5-alpine3.21 as builder

COPY --from=modules /go/pkg /go/pkg
COPY . /app
Expand Down
4 changes: 2 additions & 2 deletions integration-test/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Step 1: Modules caching
FROM golang:1.24.4-alpine3.21 as modules
FROM golang:1.24.5-alpine3.21 as modules

COPY go.mod go.sum /modules/

Expand All @@ -8,7 +8,7 @@ WORKDIR /modules
RUN go mod download

# Step 2: Tests
FROM golang:1.24.4-alpine3.21
FROM golang:1.24.5-alpine3.21

COPY --from=modules /go/pkg /go/pkg
COPY . /app
Expand Down
Loading