Compare commits

..

No commits in common. "master" and "1" have entirely different histories.
master ... 1

View File

@ -1,9 +1,5 @@
FROM ubuntu:16.04 FROM ubuntu:16.04
# environment settings
ARG DEBIAN_FRONTEND="noninteractive"
ENV TERM="xterm"
# package list as variable # package list as variable
ARG PACKAGE_LIST="\ ARG PACKAGE_LIST="\
bash \ bash \
@ -38,8 +34,4 @@ ARG PACKAGE_LIST="\
RUN \ RUN \
apt-get update && \ apt-get update && \
apt-get install -y \ apt-get install -y \
$PACKAGE_LIST && \ $PACKAGE_LIST
# clean up
rm -rf \
/var/lib/apt/lists/*