mirror of https://github.com/status-im/consul.git
9 lines
161 B
Plaintext
9 lines
161 B
Plaintext
|
FROM docker.mirror.hashicorp.services/windows/golang:1809
|
||
|
|
||
|
WORKDIR /go/src
|
||
|
COPY ./ .
|
||
|
|
||
|
RUN go build -v -o test-sds-server.exe sds.go
|
||
|
|
||
|
CMD ["test-sds-server.exe"]
|