diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-25 21:38:01 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-25 21:38:01 +0100 |
commit | 3bd571855591fd067b4e3647e81751c88d5464c9 (patch) | |
tree | e6bf7f6cc8e61c1d1c69e273656fd664b9ea76b3 /test/integration/docker/git_server/Dockerfile | |
parent | docker: add run.sh (diff) | |
download | cgitize-3bd571855591fd067b4e3647e81751c88d5464c9.tar.gz cgitize-3bd571855591fd067b4e3647e81751c88d5464c9.zip |
add --quiet flags to all installations
Diffstat (limited to 'test/integration/docker/git_server/Dockerfile')
-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' && \ |