mirror of
https://github.com/status-im/consul.git
synced 2025-02-11 13:17:36 +00:00
Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> Co-authored-by: Ronald <roncodingenthusiast@users.noreply.github.com>
12 lines
190 B
Docker
12 lines
190 B
Docker
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
FROM golang:latest
|
|
|
|
WORKDIR /go/src
|
|
COPY ./ .
|
|
|
|
RUN go build -v -o test-sds-server sds.go
|
|
|
|
CMD ["/go/src/test-sds-server"]
|