mirror of
https://github.com/apple/container.git
synced 2026-09-09 09:15:42 +00:00
+6








3407cc3f16
Co-authored-by: Aditya Ramani <a_ramani@apple.com> Co-authored-by: Agam Dua <agam_dua@apple.com> Co-authored-by: Danny Canter <danny_canter@apple.com> Co-authored-by: Dmitry Kovba <dkovba@apple.com> Co-authored-by: Eric Ernst <eric_ernst@apple.com> Co-authored-by: Evan Hazlett <ehazlett@apple.com> Co-authored-by: Gilbert Song <gilbertsong@apple.com> Co-authored-by: Hugh Bussell <hbussell@apple.com> Co-authored-by: John Logan <john_logan@apple.com> Co-authored-by: Kathryn Baldauf <k_baldauf@apple.com> Co-authored-by: Madhu Venugopal <mvenugopal@apple.com> Co-authored-by: Michael Crosby <michael_crosby@apple.com> Co-authored-by: Sidhartha Mani <sidhartha_mani@apple.com> Co-authored-by: Tanweer Noor <tnoor@apple.com> Co-authored-by: Ximena Perez Diaz <xperez528@gmail.com> Co-authored-by: Yibo Zhuang <yzhuang@apple.com>
29 lines
641 B
Docker
29 lines
641 B
Docker
FROM ubuntu:focal
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
autoconf \
|
|
bc \
|
|
binutils-multiarch \
|
|
binutils-aarch64-linux-gnu \
|
|
binutils-x86-64-linux-gnu \
|
|
bison \
|
|
flex \
|
|
gcc \
|
|
gcc-aarch64-linux-gnu \
|
|
gcc-x86-64-linux-gnu \
|
|
git \
|
|
libncurses-dev \
|
|
make \
|
|
openssl \
|
|
python-is-python3 \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY sources.list /etc/apt/sources.list
|
|
|
|
RUN apt-get update \
|
|
&& dpkg --add-architecture amd64 \
|
|
&& dpkg --add-architecture arm64 \
|
|
&& apt-get install -y libelf-dev:amd64 libelf-dev:arm64 \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* |