Quiet package installation
This commit is contained in:
parent
fdb60de5bc
commit
a3f09c186c
1 changed files with 3 additions and 3 deletions
|
@ -1,8 +1,8 @@
|
|||
FROM debian:buster AS builder
|
||||
|
||||
# Build-time dependencies
|
||||
RUN apt-get update && apt-get install -y \
|
||||
ca-certificates \
|
||||
RUN apt-get update -yq && apt-get install -yq \
|
||||
ca-cerqtificates \
|
||||
build-essential \
|
||||
pkg-config \
|
||||
qt5-default \
|
||||
|
@ -50,7 +50,7 @@ RUN useradd --create-home --home-dir $HOME user \
|
|||
WORKDIR $HOME
|
||||
|
||||
# Runtime dependencies
|
||||
RUN apt-get update && apt-get install -y \
|
||||
RUN apt-get update && apt-get install -yq \
|
||||
ca-certificates \
|
||||
'libprotobuf[0-9]+$' \
|
||||
libqt5core5a \
|
||||
|
|
Loading…
Reference in a new issue