From 152a4ed07c99f8848d4e4e7bc37483519b7e7f0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Tue, 27 Jun 2023 15:28:36 +0200 Subject: [PATCH] fix: sanity-check the docker image start MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit To avoid basic runtime failures due to missing libraries: ``` > docker run --rm statusteam/nim-waku:deploy-wakuv2-test --version could not load: libpq.so(.5|) ``` Signed-off-by: Jakub SokoĊ‚owski --- ci/Jenkinsfile.release | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ci/Jenkinsfile.release b/ci/Jenkinsfile.release index fce86efd2..512a16280 100644 --- a/ci/Jenkinsfile.release +++ b/ci/Jenkinsfile.release @@ -67,6 +67,14 @@ pipeline { } } } + stage('Check') { + steps { script { + image.inside('--entrypoint=""') { c -> + sh '/usr/bin/wakunode --version' + } + } } + } + stage('Push') { steps { script { withDockerRegistry([credentialsId: "dockerhub-statusteam-auto", url: ""]) {