FROM golang:1.13-rc-alpine as builder
LABEL maintainer=zuiurs
RUN apk add \
git \
make \
gcc \
libc-dev
RUN git clone https://github.com/pingcap/go-ycsb.git $GOPATH/src/github.com/pingcap/go-ycsb
WORKDIR $GOPATH/src/github.com/pingcap/go-ycsb
RUN make
FROM alpine:latest
COPY --from=builder /go/src/github.com/pingcap/go-ycsb/bin/go-ycsb /
COPY --from=builder /go/src/github.com/pingcap/go-ycsb/workloads /workloads
CMD ["/go-ycsb"]
Content type
Image
Digest
Size
21.4 MB
Last updated
about 7 years ago
docker pull zuiurs/go-ycsb