mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-10 05:07:26 +01:00
47 lines
1.1 KiB
Plaintext
47 lines
1.1 KiB
Plaintext
# Image build scripts
|
|
COPY imagefiles/install-gosu-binary.sh /buildscripts/
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
ARG REPO=http://cdn-fastly.deb.debian.org
|
|
|
|
RUN \
|
|
bash -c "echo \"deb $REPO/debian jessie main contrib non-free\" > /etc/apt/sources.list" && \
|
|
bash -c "echo \"deb $REPO/debian jessie-updates main contrib non-free\" >> /etc/apt/sources.list" && \
|
|
bash -c "echo \"deb $REPO/debian-security jessie/updates main\" >> /etc/apt/sources.list" && \
|
|
bash -c "echo \"deb http://ftp.debian.org/debian jessie-backports main\" >> /etc/apt/sources.list" && \
|
|
apt-get update --yes && \
|
|
apt-get install --no-install-recommends --yes \
|
|
automake \
|
|
autogen \
|
|
bash \
|
|
build-essential \
|
|
bc \
|
|
bzip2 \
|
|
ca-certificates \
|
|
curl \
|
|
file \
|
|
gettext \
|
|
gzip \
|
|
zip \
|
|
make \
|
|
ncurses-dev \
|
|
pkg-config \
|
|
libtool \
|
|
python \
|
|
python-pip \
|
|
rsync \
|
|
sed \
|
|
ssh \
|
|
bison \
|
|
flex \
|
|
tar \
|
|
pax \
|
|
vim \
|
|
wget \
|
|
xz-utils \
|
|
zlib1g-dev \
|
|
&& \
|
|
apt-get clean --yes && \
|
|
/buildscripts/install-gosu-binary.sh && \
|
|
rm -rf /buildscripts
|