Skip to content

Commit

Permalink
Upgrade to Alpine 3.20.3 and Go 1.23.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ntap-fge committed Oct 18, 2024
1 parent 14b624e commit ecaafeb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit-test-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.22.6
go-version: 1.23.2
cache: true
cache-dependency-path: |
**/go.sum
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ENV NODE_ENV=production \
RUN yarn build

# Backend builder stage
FROM docker.io/library/golang:1.22.6-alpine3.20 as go-builder
FROM docker.io/library/golang:1.23.2-alpine3.20 as go-builder

RUN apk add --no-cache gcc g++

Expand All @@ -46,7 +46,7 @@ RUN go run build.go build && \
mv /go/src/github.com/credativ/plutono/bin/linux-$(go env GOARCH)/plutono-cli /go/src/github.com/credativ/plutono/bin/

# Final stage
FROM docker.io/library/alpine:3.20.2 as final
FROM docker.io/library/alpine:3.20.3 as final

ARG PL_UID="472"
ARG PL_GID="0"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ COPY emails emails
ENV NODE_ENV production
RUN yarn build

FROM golang:1.15.1 AS go-builder
FROM golang:1.23.2 AS go-builder

WORKDIR /src/plutono

Expand Down
2 changes: 1 addition & 1 deletion devenv/docker/blocks/prometheus_random_data/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This Dockerfile builds an image for a client_golang example.

# Builder image, where we build the example.
FROM golang:1.15.1 AS builder
FROM golang:1.23.2 AS builder
# Download prometheus/client_golang/examples/random first
RUN go get github.com/prometheus/client_golang/examples/random
WORKDIR /go/src/github.com/prometheus/client_golang
Expand Down

0 comments on commit ecaafeb

Please sign in to comment.