mirror of
https://github.com/bcicen/ctop.git
synced 2024-08-30 18:23:19 +00:00
13 lines
274 B
Plaintext
13 lines
274 B
Plaintext
FROM quay.io/vektorcloud/go:1.8
|
|
|
|
RUN apk add --no-cache make
|
|
|
|
COPY glide.* /go/src/github.com/bcicen/ctop/
|
|
WORKDIR /go/src/github.com/bcicen/ctop/
|
|
RUN glide install
|
|
|
|
COPY . /go/src/github.com/bcicen/ctop
|
|
RUN make build && \
|
|
mkdir -p /go/bin && \
|
|
mv -v ctop /go/bin/
|