ethr/Dockerfile
subham sarkar 5b05e977f4
Use go build instead of go get (#126)
With the migration to Go Modules, one should avoid the use of the "go get".
2020-09-22 16:29:48 -07:00

9 lines
80 B
Docker

FROM golang:1.13
WORKDIR /app
ADD ./ /app
RUN mkdir /out && \
go build .