github.com/freiheit-com/kuberpult@v1.24.2-0.20240328135542-315d5630abe6/infrastructure/docker/install-dependencies/Dockerfile (about)

     1  FROM alpine:3.18
     2  
     3  RUN apk --update add --no-cache libgit2 libgit2-dev go protoc make pkgconfig git cmake gettext
     4  RUN tar --version
     5  RUN wget https://github.com/bufbuild/buf/releases/download/v1.4.0/buf-Linux-x86_64 -O /usr/local/bin/buf && chmod +x /usr/local/bin/buf
     6  RUN echo '9d38f8d504c01dd19ac9062285ac287f44788f643180545077c192eca9053a2c  /usr/local/bin/buf' | sha256sum -c
     7  
     8  RUN wget https://get.helm.sh/helm-v3.8.0-linux-amd64.tar.gz
     9  RUN tar -zxvf helm-v3.8.0-linux-amd64.tar.gz
    10  RUN mv linux-amd64/helm /usr/local/bin/helm
    11  
    12  # adding go/bin to the PATH variable so that golang plug-ins can work.
    13  ENV PATH $PATH:/root/go/bin