install less during build

This commit is contained in:
Michael Bradley, Jr 2018-08-20 17:52:29 -05:00
parent 5442b0f88f
commit 28f12915f6
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,8 @@ ARG __LC_ALL
SHELL ["/bin/bash", "-c"] SHELL ["/bin/bash", "-c"]
RUN export DEBIAN_FRONTEND=noninteractive \ RUN export DEBIAN_FRONTEND=noninteractive \
&& apt-get update \ && apt-get update \
&& apt-get install -y locales \ && apt-get install -y less \
locales \
&& sed -i \ && sed -i \
-e "s/# ${__LANG} ${__CODESET}/${__LANG} ${__CODESET}/" \ -e "s/# ${__LANG} ${__CODESET}/${__LANG} ${__CODESET}/" \
/etc/locale.gen \ /etc/locale.gen \

View File

@ -2,7 +2,6 @@
apt-get update apt-get update
apt-get install -y \ apt-get install -y \
less \
lsof \ lsof \
net-tools \ net-tools \
parallel \ parallel \