mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
471 B
14 lines
471 B
# Copyright (C) 2016 Arista Networks, Inc.
|
|
# Use of this source code is governed by the Apache License 2.0
|
|
# that can be found in the COPYING file.
|
|
|
|
# TODO: move this to cmd/ockafka (https://github.com/docker/hub-feedback/issues/292)
|
|
FROM golang:1.7.3
|
|
|
|
RUN mkdir -p /go/src/github.com/aristanetworks/goarista/cmd
|
|
WORKDIR /go/src/github.com/aristanetworks/goarista
|
|
COPY ./ .
|
|
RUN go get -d ./cmd/ockafka/... \
|
|
&& go install ./cmd/ockafka
|
|
|
|
ENTRYPOINT ["/go/bin/ockafka"]
|
|
|