From 7270ddb835defd0383601d301bcb56b51b441bdf Mon Sep 17 00:00:00 2001 From: valentijnscholten Date: Tue, 16 Nov 2021 21:30:10 +0100 Subject: [PATCH] add build arg for userid integration tests (#5432) --- Dockerfile.integration-tests | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile.integration-tests b/Dockerfile.integration-tests index e8434bcff1b..ab8a834d41a 100644 --- a/Dockerfile.integration-tests +++ b/Dockerfile.integration-tests @@ -45,7 +45,8 @@ COPY tests/ ./tests/ RUN chmod -R 0777 /app -USER 1001 +ARG uid=1001 +USER ${uid} ENV \ DD_ADMIN_USER=admin \ DD_ADMIN_PASSWORD='' \