From c39da58d9df2785f3b34f3d07f8074dcf825ab5d Mon Sep 17 00:00:00 2001 From: Devon Mackay Date: Sun, 1 Jul 2018 22:28:47 -0400 Subject: [PATCH] Fixup default command so variable interpolation works --- docker/tester/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/tester/Dockerfile b/docker/tester/Dockerfile index d54e661f..5f1deeeb 100644 --- a/docker/tester/Dockerfile +++ b/docker/tester/Dockerfile @@ -11,7 +11,7 @@ ENV SKIP_PIPENV true ENTRYPOINT ["/usr/bin/dumb-init", "--"] # Default command is to run all the tests -CMD ["${APP_DIR}/script/cibuild"] +CMD ["bash", "-c", "${APP_DIR}/script/cibuild"] # Create application directory RUN set -x ; \