-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,15 @@ LABEL maintainer="SBB Polarion Team <[email protected]>" | |
ARG APP_IMAGE_VERSION=0.0.0-dev | ||
|
||
RUN apt-get update && \ | ||
apt-get --yes --no-install-recommends install chromium dbus fonts-dejavu fonts-liberation libpango-1.0-0 libpangoft2-1.0-0 python3-brotli python3-cffi vim && \ | ||
apt-get --yes --no-install-recommends install \ | ||
chromium dbus \ | ||
fonts-dejavu \ | ||
fonts-liberation \ | ||
libpango-1.0-0 \ | ||
libpangoft2-1.0-0 \ | ||
python3-brotli \ | ||
python3-cffi \ | ||
vim && \ | ||
apt-get clean autoclean && \ | ||
apt-get --yes autoremove && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|