aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Dockerfile
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-07-04 12:13:37 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-07-04 12:13:37 +0200
commite0bb42380bccf35913ea43db56d25f2385e4eb99 (patch)
tree893656d693e40e18a8e21a7cdff2dcde5cf4c142 /Dockerfile
parentappease clang-format (diff)
downloadcimple-e0bb42380bccf35913ea43db56d25f2385e4eb99.tar.gz
cimple-e0bb42380bccf35913ea43db56d25f2385e4eb99.zip
docker: don't run Valgrind tests
They fail; check again after Alpine 3.19 comes out.
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 0b86a5a..1ede8ef 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -25,7 +25,7 @@ RUN cd -- "$src_dir" && \
"DEFAULT_PORT=$DEFAULT_PORT" \
"INSTALL_PREFIX=$install_dir" && \
ulimit -n 1024 && \
- make test/all CONFIGURATION="$CONFIGURATION"
+ make test CONFIGURATION="$CONFIGURATION"
FROM base