Skip to content
Open
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 src/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build stage
FROM golang:1.22.0-alpine3.19 AS build
FROM golang:1.22.5-alpine3.19 AS build

WORKDIR /build
COPY . .
Expand All @@ -8,7 +8,7 @@ WORKDIR cmd/lio
RUN CGO_ENABLED=0 go build -v -trimpath -o lio

# final packaging
FROM golang:1.22.0-alpine3.19
FROM golang:1.22.5-alpine3.19

# Run this here to ensure we always get up to date root certs
RUN apk update && apk add --no-cache git ca-certificates && update-ca-certificates
Expand Down