Skip to content
Snippets Groups Projects
Commit 536fb37d authored by Erick Hitter's avatar Erick Hitter
Browse files

Update Golang Dockerfile dependency

parent 0db46d94
No related branches found
No related tags found
1 merge request!17Update Golang image for Buster
Pipeline #1361 failed with stages
in 7 minutes and 14 seconds
......@@ -9,6 +9,13 @@ ENV GOPATH /go
ENV PATH ${GOPATH}/bin:$PATH
RUN go get -u golang.org/x/lint/golint
# Install requirement to import LLVM key
RUN apt-get update && apt-get install -y --no-install-recommends \
gnupg2 \
wget \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# Add apt key for LLVM repository
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment