From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtpng3.m.smailru.net (smtpng3.m.smailru.net [94.100.177.149]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 2CF524696C3 for ; Tue, 10 Dec 2019 14:21:39 +0300 (MSK) From: "Alexander V. Tikhonov" Date: Tue, 10 Dec 2019 14:21:32 +0300 Message-Id: <444449da1110ff892195a9d5c4176f344f3b5260.1575976611.git.avtikhon@tarantool.org> In-Reply-To: References: In-Reply-To: References: Subject: [Tarantool-patches] [PATCH v2 4/5] static build: added build subdirectory cleanup List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexander Turenko Cc: tarantool-patches@dev.tarantool.org Added 'build' directory removement to avoid of old configuration at build/curl which is used for curl building. --- Dockerfile.staticbuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile.staticbuild b/Dockerfile.staticbuild index 66342fa4e..0424179a2 100644 --- a/Dockerfile.staticbuild +++ b/Dockerfile.staticbuild @@ -72,7 +72,8 @@ RUN set -x && \ RUN set -x && \ find . -name 'CMakeFiles' -type d -exec rm -rf {} + && \ - find . -name 'CMakeCache.txt' -type f -delete + find . -name 'CMakeCache.txt' -type f -delete && \ + rm -rf build RUN pip install -r /tarantool/test-run/requirements.txt -- 2.17.1