From 0dd85a21a9ee6fc9d7d78ab036bbec2e586cb8ae Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Sun, 20 Nov 2022 16:58:31 +0100 Subject: [PATCH] Fix proto gen --- hack/gen.Dockerfile | 31 +++++++++++++------------------ tools.go | 8 -------- tools/tools.go | 11 +++++++++++ 3 files changed, 24 insertions(+), 26 deletions(-) delete mode 100644 tools.go create mode 100644 tools/tools.go diff --git a/hack/gen.Dockerfile b/hack/gen.Dockerfile index 5cfc1349..3e7caae1 100644 --- a/hack/gen.Dockerfile +++ b/hack/gen.Dockerfile @@ -2,25 +2,18 @@ ARG GO_VERSION="1.19" ARG PROTOC_VERSION="3.17.3" -ARG GLIBC_VERSION="2.33-r0" -FROM golang:${GO_VERSION}-alpine AS base -ARG GLIBC_VERSION -RUN apk add --no-cache curl file git unzip -RUN <