Set default shell, add lsb-release

This commit is contained in:
Chuck Lantz
2019-05-22 08:50:39 -07:00
parent f041d909d8
commit 60e45bae30

View File

@@ -13,8 +13,8 @@ ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \ RUN apt-get update \
&& apt-get -y install --no-install-recommends apt-utils 2>&1 && apt-get -y install --no-install-recommends apt-utils 2>&1
# Verify git, needed tools installed # Install git, process tools, lsb-release (common in install instructions for CLIs)
RUN apt-get -y install git procps curl RUN apt-get -y install git procps lsb-release
# Clean up # Clean up
RUN apt-get autoremove -y \ RUN apt-get autoremove -y \
@@ -22,4 +22,5 @@ RUN apt-get autoremove -y \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
ENV DEBIAN_FRONTEND=dialog ENV DEBIAN_FRONTEND=dialog
# Set the default shell to bash rather than sh
ENV SHELL /bin/bash