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 d98058d commit a072497Copy full SHA for a072497
Dockerfile
@@ -45,4 +45,12 @@ RUN go version
45
RUN ln -s /usr/local/go/bin/go /usr/bin/go
46
RUN ln -s /usr/local/go/bin/gofmt/usr/bin/gofmt
47
48
+
49
+RUN wget https://github.com/mitchellh/golicense/releases/download/v0.1.1/golicense_0.1.1_linux_x86_64.tar.gz &&\
50
+ tar -xzf golicense_0.1.1_linux_x86_64.tar.gz -C tmp &&\
51
+ mv tmp/golicense /usr/local/bin/golicense &&\
52
+ rm -rf tmp &&\
53
+ rm golicense_0.1.1_linux_x86_64.tar.gz
54
55
56
ENTRYPOINT ["/bin/bash", "-l", "-c"]
0 commit comments