Skip to content

Commit

Permalink
Make sure packages installation is not interactive
Browse files Browse the repository at this point in the history
  • Loading branch information
aguslr committed May 23, 2024
1 parent 72ac57e commit e8b5c1e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions Dockerfile.full
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ ENV QEMU_VER=8.2.0
RUN <<-EOT bash
set -eu

env DEBIAN_FRONTEND=noninteractive
apt-get update

apt-get install -y \
env DEBIAN_FRONTEND=noninteractive \
apt-get install -y \
wget imagemagick file build-essential python3-pip

apt-get install -y --no-install-recommends \
env DEBIAN_FRONTEND=noninteractive \
apt-get install -y --no-install-recommends \
git bison flex ninja-build python3-venv valgrind \
libaio-dev \
libbluetooth-dev \
Expand Down
7 changes: 4 additions & 3 deletions Dockerfile.slim
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ ENV QEMU_VER=8.2.0
RUN <<-EOT bash
set -eu

env DEBIAN_FRONTEND=noninteractive
apt-get update

apt-get install -y \
env DEBIAN_FRONTEND=noninteractive \
apt-get install -y \
wget imagemagick file build-essential python3-pip

apt-get install -y --no-install-recommends \
env DEBIAN_FRONTEND=noninteractive \
apt-get install -y --no-install-recommends \
bison flex ninja-build valgrind \
libcap-ng-dev \
libepoxy-dev \
Expand Down

0 comments on commit e8b5c1e

Please sign in to comment.