mirror of
https://github.com/cubefs/cubefs.git
synced 2026-08-02 10:06:14 +00:00
23 lines
1.0 KiB
Docker
23 lines
1.0 KiB
Docker
FROM golang:1.17.13@sha256:87262e4a4c7db56158a80a18fefdc4fee5accc41b59cde821e691d05541bbb18
|
|
|
|
# install requirements for LTP (Linux Test Program) tests
|
|
RUN apt-get update && apt-get install -y xz-utils make gcc-10 g++-10 flex bison automake autoconf psmisc cmake
|
|
RUN wget --no-check-certificate https://ocs-cn-north1.heytapcs.com/cubefs/github/ci/rocksdb_libs.tar.gz
|
|
|
|
# install requirements for s3-compatible tests
|
|
RUN apt-get install -y sudo python3 python3-pip
|
|
RUN pip3 install boto3 unittest2 requests
|
|
|
|
# install go tools for code format checking
|
|
RUN wget --no-check-certificate https://ocs-cn-north1.heytapcs.com/cubefs/github/ci/go_bin.tar.gz
|
|
RUN tar -zxf go_bin.tar.gz -C /go/
|
|
|
|
# prepare env cgo flags
|
|
RUN go env -w CGO_CFLAGS="-I/go/src/github.com/cubefs/cubefs/build/include"
|
|
RUN go env -w CGO_LDFLAGS="-L/go/src/github.com/cubefs/cubefs/build/lib -lrocksdb -lz -lbz2 -lsnappy -llz4 -lzstd -lstdc++"
|
|
|
|
# cleanup environment
|
|
RUN apt-get install -y jq fuse \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& apt-get clean
|