Dockerfile: Use Debian's gosu

The binary download from upstream dates back to jessie times.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
This commit is contained in:
Jan Kiszka 2019-12-05 20:00:05 +01:00
parent 141476203d
commit a5d0153e84

View File

@ -15,15 +15,12 @@ RUN apt-get install --no-install-recommends -y \
xz-utils debianutils iputils-ping python3-git python3-jinja2 libegl1-mesa libsdl1.2-dev \
pylint3 xterm \
python3-setuptools python3-wheel python3-yaml \
lsb-release file vim less procps tree tar bzip2 bc tmux libncurses-dev \
gosu lsb-release file vim less procps tree tar bzip2 bc tmux libncurses-dev \
dosfstools mtools parted syslinux \
git-lfs mercurial iproute2 ssh-client curl rsync gnupg && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
RUN wget -nv -O /usr/bin/gosu "https://github.com/tianon/gosu/releases/download/1.10/gosu-amd64" && \
chmod +x /usr/bin/gosu
RUN wget -nv -O /usr/bin/oe-git-proxy "http://git.yoctoproject.org/cgit/cgit.cgi/poky/plain/scripts/oe-git-proxy" && \
chmod +x /usr/bin/oe-git-proxy
ENV GIT_PROXY_COMMAND="oe-git-proxy"