Put packages on separate lines for better readability

Signed-off-by: Thomas Lauf <thomas.lauf@tngtech.com>
This commit is contained in:
Thomas Lauf 2019-12-20 16:27:53 +01:00
parent 28a3db5579
commit 660816ae5f
9 changed files with 123 additions and 16 deletions

View file

@ -3,7 +3,19 @@ FROM ubuntu:18.04
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update
RUN apt-get install -y build-essential cmake git uuid-dev libgnutls28-dev libfaketime man locales python3 python3-dateutil tzdata
RUN apt-get install -y \
build-essential \
cmake \
git \
uuid-dev \
libgnutls28-dev \
libfaketime \
man \
locales \
python3 \
python3-dateutil \
tzdata
RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 10
RUN ln -fs /usr/share/zoneinfo/Europe/Berlin /etc/localtime