diff --git a/docker/development.Dockerfile b/docker/development.Dockerfile index d6b0b3f9..752dc5f2 100644 --- a/docker/development.Dockerfile +++ b/docker/development.Dockerfile @@ -16,13 +16,13 @@ RUN apt-get install -y python-software-properties \ libidn11 \ git -ADD https://cmake.org/files/v3.15/cmake-3.15.2-Linux-x86_64.tar.gz /opt/cmake-3.15.2-Linux-x86_64.tar.gz +ADD https://github.com/Kitware/CMake/releases/download/v3.15.2/cmake-3.15.2-Linux-x86_64.tar.gz /opt/cmake-3.15.2-Linux-x86_64.tar.gz RUN tar -C /opt -xvzf /opt/cmake-3.15.2-Linux-x86_64.tar.gz RUN cp -r /opt/cmake-3.15.2-Linux-x86_64/* /usr ADD https://launchpad.net/ubuntu/+archive/primary/+files/snappy_1.1.3.orig.tar.gz /opt/snappy_1.1.3.orig.tar.gz RUN tar -C /opt -xf /opt/snappy_1.1.3.orig.tar.gz -RUN mkdir /opt/snappy-1.1.3/build && cd /opt/snappy-1.1.3/build && ../configure && make -j8 && make install +RUN mkdir -p /opt/snappy-1.1.3/build && cd /opt/snappy-1.1.3/build && ../configure && make -j8 && make install ADD https://github.com/unicode-org/icu/releases/download/release-61-1/icu4c-61_1-src.tgz /opt/icu4c-61_1-src.tgz RUN tar -C /opt -xf /opt/icu4c-61_1-src.tgz @@ -44,5 +44,28 @@ RUN tar -C /opt -xf /opt/curl-7.65.3.tar.gz RUN cd /opt/curl-7.65.3 && LIBS="-ldl -lpthread" ./configure --disable-shared --with-ssl=/usr/local \ --without-ca-bundle --without-ca-path && make -j8 && make install +ADD https://github.com/gflags/gflags/archive/v2.2.2.tar.gz /opt/gflags-2.2.2.tar.gz +RUN tar -C /opt -xf /opt/gflags-2.2.2.tar.gz +RUN cd /opt/gflags-2.2.2 && cmake . -DBUILD_SHARED_LIBS=OFF && make -j8 && make install + +RUN apt-get install -y autoconf automake libtool unzip + +ADD https://github.com/protocolbuffers/protobuf/releases/download/v3.11.4/protobuf-cpp-3.11.4.tar.gz /opt/protobuf-cpp-3.11.4.tar.gz +RUN tar -C /opt -xf /opt/protobuf-cpp-3.11.4.tar.gz +RUN cd /opt/protobuf-3.11.4 && ./configure --disable-shared && make -j8 && make check && make install + +ADD https://github.com/google/leveldb/archive/1.22.tar.gz /opt/leveldb-1.22.tar.gz.tar.gz +RUN tar -C /opt -xf /opt/leveldb-1.22.tar.gz.tar.gz +RUN mkdir -p /opt/leveldb-1.22/build && cd /opt/leveldb-1.22/build && cmake -DCMAKE_BUILD_TYPE=Release .. && \ + cmake --build . && make install + +# Remove dynamic libraries +RUN rm -rf /usr/local/lib/*.so* + +ADD https://github.com/apache/incubator-brpc/archive/0.9.7-rc03.tar.gz /opt/brpc-0.9.7-rc03.tar.gz +RUN tar -C /opt -xf /opt/brpc-0.9.7-rc03.tar.gz +RUN cd /opt/incubator-brpc-0.9.7-rc03 && sh config_brpc.sh --nodebugsymbols --headers=/usr/local/include --libs=/usr/local/lib +RUN cd /opt/incubator-brpc-0.9.7-rc03 && LINK_SO=0 make -j8 && make install + ENV CC /usr/local/gcc-6.4.0/bin/gcc ENV CXX /usr/local/gcc-6.4.0/bin/g++