2024-04-17 18:49:04 +00:00
|
|
|
FROM golang:1.21.9-bookworm
|
2021-05-25 14:33:44 +00:00
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
|
|
git \
|
2024-04-17 18:49:04 +00:00
|
|
|
protobuf-compiler='3.21.12*' \
|
|
|
|
clang-format='1:14.0*'
|
2021-05-25 14:33:44 +00:00
|
|
|
|
|
|
|
# We don't want any default values for these variables to make sure they're
|
|
|
|
# explicitly provided by parsing the go.mod file. Otherwise we might forget to
|
|
|
|
# update them here if we bump the versions.
|
2021-07-29 11:32:53 +00:00
|
|
|
ARG PROTOBUF_VERSION
|
2021-05-25 14:33:44 +00:00
|
|
|
ARG GRPC_GATEWAY_VERSION
|
|
|
|
|
2021-07-29 11:32:53 +00:00
|
|
|
ENV PROTOC_GEN_GO_GRPC_VERSION="v1.1.0"
|
2021-07-26 16:44:31 +00:00
|
|
|
ENV FALAFEL_VERSION="v0.9.1"
|
2024-04-17 18:49:04 +00:00
|
|
|
ENV GOCACHE=/tmp/build/.cache
|
|
|
|
ENV GOMODCACHE=/tmp/build/.modcache
|
2021-07-29 11:32:53 +00:00
|
|
|
|
2021-05-25 14:33:44 +00:00
|
|
|
RUN cd /tmp \
|
2024-04-17 18:49:04 +00:00
|
|
|
&& mkdir -p /tmp/build/.cache \
|
|
|
|
&& mkdir -p /tmp/build/.modcache \
|
|
|
|
&& go install google.golang.org/protobuf/cmd/protoc-gen-go@${PROTOBUF_VERSION} \
|
|
|
|
&& go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@${PROTOC_GEN_GO_GRPC_VERSION} \
|
|
|
|
&& go install github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway@${GRPC_GATEWAY_VERSION} \
|
|
|
|
&& go install github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2@${GRPC_GATEWAY_VERSION} \
|
|
|
|
&& go install github.com/lightninglabs/falafel@${FALAFEL_VERSION} \
|
|
|
|
&& go install golang.org/x/tools/cmd/goimports@v0.1.7 \
|
|
|
|
&& chmod -R 777 /tmp/build/
|
2021-05-25 14:33:44 +00:00
|
|
|
|
|
|
|
WORKDIR /build
|
|
|
|
|
|
|
|
CMD ["/bin/bash", "/build/looprpc/gen_protos.sh"]
|