mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
9 lines
122 B
Docker
9 lines
122 B
Docker
FROM golang:latest
|
|
|
|
WORKDIR /go/src
|
|
COPY ./ .
|
|
|
|
RUN go build -v -o test-sds-server sds.go
|
|
|
|
CMD ["/go/src/test-sds-server"]
|