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

@ -1,9 +1,20 @@
FROM archlinux/base
RUN pacman -Sy --noconfirm archlinux-keyring
RUN pacman -Syyu --noconfirm
RUN pacman -S --noconfirm gnutls util-linux bash-completion cmake python python-dateutil git libfaketime man-db groff
RUN pacman -S --noconfirm make gcc
RUN pacman -Syu --noconfirm
RUN pacman -S --noconfirm \
gnutls \
util-linux \
bash-completion \
cmake \
python \
python-dateutil \
git \
libfaketime \
man-db \
groff \
make \
gcc
# Setup language environment
ENV LANG en_US.UTF-8

View file

@ -1,10 +1,22 @@
FROM centos:7
RUN yum update -y
RUN yum install python git gcc gcc-c++ make gnutls-devel libuuid-devel libfaketime man -y
RUN yum install epel-release centos-release-scl -y
RUN yum install which cmake3 devtoolset-7-gcc* -y
RUN yum install python-dateutil -y
RUN yum install -y epel-release centos-release-scl
RUN yum install -y \
git \
gcc \
gcc-c++ \
make \
gnutls-devel \
libuuid-devel \
libfaketime \
man \
which \
cmake3 \
devtoolset-7-gcc* \
python36 \
python36-dateutil
RUN source scl_source enable devtoolset-7; gcc --version; cmake3 --version
RUN ln -s /usr/bin/cmake3 /usr/bin/cmake
RUN ln -sf /usr/bin/python3 /usr/bin/python

View file

@ -3,8 +3,19 @@ FROM debian:stable
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update
RUN apt-get install -y build-essential cmake git uuid-dev libgnutls28-dev libfaketime man locales
RUN apt-get install -y python3 python3-dateutil
RUN apt-get install -y \
build-essential \
cmake \
git \
uuid-dev \
libgnutls28-dev \
libfaketime \
man \
locales \
python3 \
tzdata \
python3-dateutil
RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 10
RUN apt-get install -y tzdata

View file

@ -3,8 +3,19 @@ FROM debian:testing
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update
RUN apt-get install -y build-essential cmake git uuid-dev libgnutls28-dev libfaketime man locales
RUN apt-get install -y python3 python3-dateutil
RUN apt-get install -y \
build-essential \
cmake \
git \
uuid-dev \
libgnutls28-dev \
libfaketime \
man \
locales \
tzdata \
python3 \
python3-dateutil
RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 10
RUN apt-get install -y tzdata

View file

@ -1,7 +1,19 @@
FROM fedora:28
RUN dnf update -y
RUN dnf install -y python3 python3-dateutil git gcc gcc-c++ cmake make gnutls-devel libuuid-devel libfaketime man
RUN dnf install -y \
python3 \
python3-dateutil \
git \
gcc \
gcc-c++ \
cmake \
make \
gnutls-devel \
libuuid-devel \
libfaketime \
man
RUN alternatives --install /usr/bin/python python /usr/bin/python3 10
RUN ln -fs /usr/share/zoneinfo/Europe/Berlin /etc/localtime

View file

@ -1,7 +1,19 @@
FROM fedora:29
RUN dnf update -y
RUN dnf install -y python3 python3-dateutil git gcc gcc-c++ cmake make gnutls-devel libuuid-devel libfaketime man
RUN dnf install -y \
python3 \
python3-dateutil \
git \
gcc \
gcc-c++ \
cmake \
make \
gnutls-devel \
libuuid-devel \
libfaketime \
man
RUN alternatives --install /usr/bin/python python /usr/bin/python3 10
RUN ln -fs /usr/share/zoneinfo/Europe/Berlin /etc/localtime

View file

@ -1,6 +1,20 @@
FROM opensuse/leap:15
RUN zypper install -y python3 python3-dateutil awk coreutils git gcc gcc-c++ cmake make libgnutls-devel libuuid-devel libfaketime man
RUN zypper install -y \
python3 \
python3-dateutil \
awk \
coreutils \
git \
gcc \
gcc-c++ \
cmake \
make \
libgnutls-devel \
libuuid-devel \
libfaketime \
man
RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 10
ENV TZ=Europe/Berlin

View file

@ -3,7 +3,19 @@ FROM ubuntu:16.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

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