mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 13:55:55 +00:00
8 lines
136 B
Plaintext
8 lines
136 B
Plaintext
FROM golang:latest
|
|
|
|
WORKDIR /go/src
|
|
COPY ./test-sds-server .
|
|
|
|
RUN go build -v -o test-sds-server sds.go
|
|
|
|
CMD ["/go/src/test-sds-server"] |