We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81b4f7d commit fbebd45Copy full SHA for fbebd45
Dockerfile
@@ -0,0 +1,15 @@
1
+FROM golang
2
+MAINTAINER Gabriel Custódio <[email protected]>
3
+
4
+# Install clang and define as default compiler.
5
+# Required in order to use memory sanitizer
6
+RUN apt-get update && apt-get install -y --no-install-recommends \
7
+ clang \
8
+ && apt-get clean \
9
+ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
10
11
+ENV CC=/usr/bin/clang \
12
+ CXX=/usr/bin/clang++
13
14
+# Go tools
15
+RUN go get -u golang.org/x/lint/golint
0 commit comments