mirror of
https://github.com/microsoft/ethr.git
synced 2024-11-10 09:03:05 +08:00
5b05e977f4
With the migration to Go Modules, one should avoid the use of the "go get".
8 lines
80 B
Docker
8 lines
80 B
Docker
FROM golang:1.13
|
|
|
|
WORKDIR /app
|
|
|
|
ADD ./ /app
|
|
|
|
RUN mkdir /out && \
|
|
go build .
|