-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: haojinming <[email protected]> Signed-off-by: haojinming <[email protected]>
- Loading branch information
1 parent
92c5d1c
commit 15b806d
Showing
1 changed file
with
7 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,10 @@ | ||
# For loading data to TiDB | ||
FROM golang:1.16.4-buster as go-ycsb-builder | ||
WORKDIR /go/src/github.com/pingcap/ | ||
RUN git clone https://github.com/pingcap/go-ycsb.git --depth=1 && \ | ||
cd go-ycsb && \ | ||
make | ||
|
||
# For operating minio S3 compatible storage | ||
FROM minio/mc as mc-builder | ||
|
||
FROM golang:1.16.4-buster | ||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
git \ | ||
curl \ | ||
vim \ | ||
less \ | ||
default-mysql-client \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
WORKDIR /go/src/github.com/pingcap/br | ||
FROM golang:1.18.0-alpine3.15 as builder | ||
RUN apk add --no-cache git make bash | ||
WORKDIR /go/src/github.com/tikv/migration/br | ||
COPY . . | ||
RUN make release | ||
|
||
COPY --from=go-ycsb-builder /go/src/github.com/pingcap/go-ycsb/bin/go-ycsb /go/bin/go-ycsb | ||
COPY --from=mc-builder /usr/bin/mc /usr/bin/mc | ||
|
||
FROM alpine:3.15 | ||
RUN apk add --no-cache tzdata bash curl socat | ||
COPY --from=builder /go/src/github.com/tikv/migration/br/bin/tikv-br /usr/bin/ | ||
ENTRYPOINT ["/bin/bash"] |