Skip to content

Commit 08cb476

Browse files
committed
build: update Dockerfile to use Ubuntu 24.04 and bump Go, GolangCI Lint, Docker, and Docker Compose versions
1 parent bf01fe1 commit 08cb476

File tree

2 files changed

+6
-13
lines changed

2 files changed

+6
-13
lines changed

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM ubuntu:24.10
1+
FROM ubuntu:24.04
22

33
ARG TARGETOS
44
ARG TARGETARCH
5-
ARG GO_VERSION=1.24.4
6-
ARG GOLANGCI_LINT_VERSION=v2.1.6
7-
ARG DOCKER_VERSION=28.3.0
8-
ARG DOCKER_COMPOSE_VERSION=2.37.3
5+
ARG GO_VERSION=1.25.1
6+
ARG GOLANGCI_LINT_VERSION=v2.4.0
7+
ARG DOCKER_VERSION=28.4.0
8+
ARG DOCKER_COMPOSE_VERSION=2.39.3
99
ARG NODE_VERSION=18.20.4
1010
ARG YARN_VERSION=1.22.22
1111

user-toolkits/alapenna/Dockerfile

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,12 @@ RUN cd /tmp && \
2121
# Install helm
2222
RUN curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
2323

24-
# Install Golang tools: air, gonb, protoc go plugins and dependencies
25-
# https://github.com/janpfeifer/gonb?tab=readme-ov-file#linux-and-macos-installation-using-standard-go-tools
24+
# Install Golang tools: air, protoc go plugins and dependencies
2625
# https://grpc.io/docs/languages/go/quickstart/#prerequisites
2726
RUN go install github.com/air-verse/air@latest && \
28-
go install github.com/janpfeifer/gonb@latest && \
29-
go install golang.org/x/tools/cmd/goimports@latest && \
30-
go install golang.org/x/tools/gopls@latest && \
3127
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest && \
3228
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
3329

34-
# Install gonb kernel
35-
RUN gonb --install
36-
3730
# Install protocol buffer compiler
3831
RUN curl -L https://github.com/protocolbuffers/protobuf/releases/download/v29.3/protoc-29.3-linux-aarch_64.zip -o /tmp/protoc.zip && \
3932
unzip /tmp/protoc.zip -d /root/.local

0 commit comments

Comments
 (0)