diff --git a/README.md b/README.md index 545a638..067295c 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,8 @@ non critical errors as strings which allows you to decide how to handle it. * Tarantool development headers * librdkafka >= 0.11.5 * librdkafka development headers +* openssl-libs +* openssl development headers * make * cmake * gcc @@ -320,6 +322,12 @@ because `rd_kafka_destroy` sometimes hangs forever. # Benchmarks +Before any commands init and updated git submodule +```bash + git submodule init + git submodule update +``` + ## Producer ### Async diff --git a/docker/Dockerfile b/docker/Dockerfile index 84da555..28cb2ac 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -7,6 +7,7 @@ RUN yum install -y cmake \ gcc-c++ \ cyrus-sasl-lib \ openssl-libs \ + openssl-devel \ tarantool-devel ADD . /opt/tarantool @@ -14,9 +15,10 @@ ADD . /opt/tarantool WORKDIR /opt/tarantool ENV STATIC_BUILD ON +ENV WITH_OPENSSL_1_1 OFF RUN cmake . RUN make -ENTRYPOINT tarantool /opt/tarantool/tests/app.lua \ No newline at end of file +ENTRYPOINT tarantool /opt/tarantool/tests/app.lua