Use go build instead of go get (#126)

With the migration to Go Modules, one should avoid the use of the "go get".
This commit is contained in:
subham sarkar 2020-09-23 04:59:48 +05:30 committed by GitHub
parent 233968d71d
commit 5b05e977f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,4 +5,4 @@ WORKDIR /app
ADD ./ /app
RUN mkdir /out && \
go get ./...
go build .