aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Dockerfile
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-02-25 22:18:32 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-02-25 22:18:32 +0100
commit84aecd3c54be7b51b14ef76536f2ee1a6426c47c (patch)
tree4f053c41dc4b0e2cab5676f532cef60acd5736f8 /Dockerfile
parentmake .gitattributes more consistent (diff)
downloadcimple-84aecd3c54be7b51b14ef76536f2ee1a6426c47c.tar.gz
cimple-84aecd3c54be7b51b14ef76536f2ee1a6426c47c.zip
use --quiet flags for installations
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index fdadc67..18c3650 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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"]