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
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:22.10 AS user
# Create a nonroot user for final image
RUN useradd -u 10001 nonroot

FROM golang:1.25.6-alpine3.22 AS builder
FROM golang:1.25.7-alpine3.22 AS builder

WORKDIR /workspace

Expand Down Expand Up @@ -31,7 +31,7 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=${TARGETARCH} \
-X "github.com/pluralsh/plural-cli/pkg/common.Date=${APP_DATE}"' \
-o plural ./cmd/plural

FROM golang:1.25.6-alpine3.22 AS final
FROM golang:1.25.7-alpine3.22 AS final

WORKDIR /

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.cloud
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.25.6-alpine3.22 AS builder
FROM golang:1.25.7-alpine3.22 AS builder

WORKDIR /workspace

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/pluralsh/plural-cli

go 1.25.6
go 1.25.7

require (
cloud.google.com/go/compute v1.49.1
Expand Down
Loading