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
|
FROM debian:buster AS builder
|
||||||
|
|
||||||
# Build-time dependencies
|
# Build-time dependencies
|
||||||
RUN apt-get update && apt-get install -y \
|
RUN apt-get update -yq && apt-get install -yq \
|
||||||
ca-certificates \
|
ca-cerqtificates \
|
||||||
build-essential \
|
build-essential \
|
||||||
pkg-config \
|
pkg-config \
|
||||||
qt5-default \
|
qt5-default \
|
||||||
|
@ -50,7 +50,7 @@ RUN useradd --create-home --home-dir $HOME user \
|
||||||
WORKDIR $HOME
|
WORKDIR $HOME
|
||||||
|
|
||||||
# Runtime dependencies
|
# Runtime dependencies
|
||||||
RUN apt-get update && apt-get install -y \
|
RUN apt-get update && apt-get install -yq \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
'libprotobuf[0-9]+$' \
|
'libprotobuf[0-9]+$' \
|
||||||
libqt5core5a \
|
libqt5core5a \
|
||||||
|
|
Loading…
Reference in a new issue