diff options
Diffstat (limited to 'test/integration')
-rw-r--r-- | test/integration/docker/git_server/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/docker/git_server/Dockerfile b/test/integration/docker/git_server/Dockerfile index c07e108..f45de02 100644 --- a/test/integration/docker/git_server/Dockerfile +++ b/test/integration/docker/git_server/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.17 -RUN apk --no-cache add bash git openssh-server tini && \ +RUN apk add -q --no-cache bash git openssh-server tini && \ echo 'root:root' | chpasswd && \ git config --global user.name 'John Doe' && \ git config --global user.email 'John.Doe@example.com' && \ |