diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-25 22:18:32 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-25 22:18:32 +0100 |
commit | 84aecd3c54be7b51b14ef76536f2ee1a6426c47c (patch) | |
tree | 4f053c41dc4b0e2cab5676f532cef60acd5736f8 /Dockerfile | |
parent | make .gitattributes more consistent (diff) | |
download | cimple-84aecd3c54be7b51b14ef76536f2ee1a6426c47c.tar.gz cimple-84aecd3c54be7b51b14ef76536f2ee1a6426c47c.zip |
use --quiet flags for installations
Diffstat (limited to '')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ ARG install_dir="/app/install" FROM base AS builder -RUN apk add --no-cache bash bsd-compat-headers build-base clang cmake libgit2-dev sqlite-dev +RUN apk add -q --no-cache bash bsd-compat-headers build-base clang cmake libgit2-dev sqlite-dev ARG C_COMPILER=clang ARG BUILD_TYPE=Release @@ -26,7 +26,7 @@ FROM base LABEL maintainer="Egor Tensin <Egor.Tensin@gmail.com>" -RUN apk add --no-cache tini libgit2 sqlite-dev +RUN apk add -q --no-cache tini libgit2 sqlite-dev ARG install_dir COPY --from=builder ["$install_dir", "$install_dir"] |