Skip to content

Commit

Permalink
fix: combine run statements in git-server docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
amolenaar committed Sep 12, 2023
1 parent 5bd06f6 commit 3c5da59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/local-git-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 /

Expand Down

0 comments on commit 3c5da59

Please sign in to comment.