From 3c5da591f253f104973d3b53c94a6c9648355e34 Mon Sep 17 00:00:00 2001 From: Arjan Molenaar Date: Tue, 12 Sep 2023 10:38:05 +0200 Subject: [PATCH] fix: combine run statements in git-server docker file --- tests/local-git-server/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/local-git-server/Dockerfile b/tests/local-git-server/Dockerfile index 26fccc2b..142b74e7 100644 --- a/tests/local-git-server/Dockerfile +++ b/tests/local-git-server/Dockerfile @@ -18,8 +18,8 @@ COPY lighttpd.conf /etc/lighttpd/lighttpd.conf RUN mkdir -p /var/www/git/git-test-repo.git WORKDIR /var/www/git/git-test-repo.git -RUN git init -b main --bare -RUN git config --local http.receivepack true +RUN git init -b main --bare && \ + git config --local http.receivepack true WORKDIR /