Skip to content
Open
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,4 +1,4 @@
FROM golang:1.25-alpine as builder
FROM golang:1.26-alpine as builder

RUN apk add --no-cache ca-certificates git

Expand All @@ -9,7 +9,7 @@ COPY . .
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a --ldflags '-s -w -extldflags "-static"' -tags netgo -installsuffix netgo -o ./redli


FROM alpine:3.9
FROM alpine:3.23
RUN apk --no-cache add ca-certificates
COPY --from=builder /src/redli /redli
ENTRYPOINT ["/redli"]
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/IBM-Cloud/redli

go 1.25

toolchain go1.25.4
go 1.26.1

require (
github.com/gomodule/redigo v1.9.3
Expand Down