Split packages onto separate lines

This will make it easier to see the changes in the dependencies included
in the yadm/testbed image.
This commit is contained in:
Tim Byrne 2019-02-28 22:28:32 -06:00
parent 7e7d199721
commit d32e63fc92
No known key found for this signature in database
GPG Key ID: 14DB4FC2465A4B12
1 changed files with 18 additions and 2 deletions

View File

@ -13,8 +13,24 @@ ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
RUN echo 'set -o vi' >> /root/.bashrc RUN echo 'set -o vi' >> /root/.bashrc
# Install prerequisites # Install prerequisites
RUN apt-get update && apt-get install -y git gnupg1 make shellcheck=0.4.6-1 bats expect curl python3-pip lsb-release RUN \
RUN pip3 install envtpl pytest==3.6.4 pylint==1.9.2 flake8==3.5.0 apt-get update && \
apt-get install -y \
curl \
expect \
git \
gnupg1 \
lsb-release \
make \
python3-pip \
shellcheck=0.4.6-1 \
;
RUN pip3 install \
envtpl \
pytest==3.6.4 \
pylint==1.9.2 \
flake8==3.5.0 \
;
# Force GNUPG version 1 at path /usr/bin/gpg # Force GNUPG version 1 at path /usr/bin/gpg
RUN ln -fs /usr/bin/gpg1 /usr/bin/gpg RUN ln -fs /usr/bin/gpg1 /usr/bin/gpg