Skip to content

Commit

Permalink
bump go in dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
maciaszczykm committed Jan 7, 2025
1 parent c202072 commit 902aeae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
Expand Down
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.22-alpine3.19 AS builder
FROM golang:1.23-alpine3.19 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.23.3-alpine3.20 AS final
FROM golang:1.23.4-alpine3.20 AS final

WORKDIR /

Expand Down

0 comments on commit 902aeae

Please sign in to comment.