github.com/matrixorigin/matrixone@v1.2.0/optools/bvt_ut/Dockerfile (about) 1 FROM matrixorigin/tester:go1.21.5-jdk8 2 3 ARG GOPROXY="https://proxy.golang.org,direct" 4 5 ENV UT_PARALLEL=1 6 ENV LC_ALL="C.UTF-8" 7 ENV LAUNCH="launch" 8 ENV ENABLE_UT="false" 9 10 RUN go env -w GOPROXY=$GOPROXY 11 12 RUN mkdir -p /matrixone-test 13 14 WORKDIR /matrixone-test 15 16 COPY go.mod go.mod 17 COPY go.sum go.sum 18 19 # cache deps before building and copying source so that we don't need to re-download as much 20 # and so that source changes don't invalidate our downloaded layer 21 RUN go mod download 22 23 COPY . . 24 25 ENTRYPOINT [ "/matrixone-test/optools/bvt_ut/entrypoint.sh" ]