diff --git a/Dockerfile.staticbuild b/Dockerfile.staticbuild index 343627746342dfac3d11841eef38efa75c70676b..66342fa4ef8feee823ad73431e0d3ba39e11904e 100644 --- a/Dockerfile.staticbuild +++ b/Dockerfile.staticbuild @@ -64,30 +64,26 @@ RUN set -x && \ COPY . /tarantool +WORKDIR /tarantool + RUN set -x && \ - cd tarantool && \ git submodule init && \ git submodule update -WORKDIR /tarantool - RUN set -x && \ find . -name 'CMakeFiles' -type d -exec rm -rf {} + && \ find . -name 'CMakeCache.txt' -type f -delete RUN pip install -r /tarantool/test-run/requirements.txt -RUN set -x \ - && (cd /tarantool; \ - cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo \ - -DENABLE_DIST:BOOL=ON \ - -DBUILD_STATIC=ON \ - -DOPENSSL_USE_STATIC_LIBS=ON \ - -DOPENSSL_ROOT_DIR=/usr/local \ - .) \ - && make -C /tarantool -j - -RUN cd /tarantool && make install +RUN set -x && \ + cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo \ + -DENABLE_DIST:BOOL=ON \ + -DBUILD_STATIC=ON \ + -DOPENSSL_USE_STATIC_LIBS=ON \ + -DOPENSSL_ROOT_DIR=/usr/local \ + . && \ + make -j && make install ARG RUN_TESTS RUN if [ -n "${RUN_TESTS}" ]; then \