From aaa367cb33ec2f79ad19dc7c7ce865106c7a23a4 Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Sat, 14 Feb 2026 00:12:56 -0500 Subject: [PATCH] chore: add -short flag to test command in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0fc7898..600d958 100644 --- a/Dockerfile +++ b/Dockerfile @@ -59,7 +59,7 @@ ENV RATE_LIMIT_ENABLED=false ENV REQUESTS_PER_MINUTE=1000 # Default command for running tests -CMD ["go", "test", "./cmd/server/tests", "-v", "-timeout", "5m", "-parallel=1"] +CMD ["go", "test", "./cmd/server/tests", "-v", "-timeout", "5m", "-parallel=1", "-short"] # Final stage FROM alpine:latest