Skip to content

Commit 8346374

Browse files
committed
Add python3 to dependencies in darwin-x64 and darwin-x86 Dockerfiles
1 parent ec3e8ba commit 8346374

2 files changed

Lines changed: 10 additions & 6 deletions

File tree

docker/darwin-x64.Dockerfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ RUN apt-get install -y --force-yes apt-utils apt-transport-https libcurl4-openss
1212
RUN echo "deb http://apt.llvm.org/stretch/ llvm-toolchain-stretch-4.0 main" >> /etc/apt/sources.list && \
1313
wget --no-check-certificate -qO - http://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && \
1414
apt-get update && \
15-
apt-get install -y --force-yes clang-4.0 llvm-4.0-dev automake autogen \
16-
libtool libxml2-dev uuid-dev libssl-dev bash \
17-
patch make tar xz-utils bzip2 gzip sed cpio git zlib1g-dev
15+
apt-get install -y --force-yes \
16+
clang-4.0 llvm-4.0-dev automake autogen \
17+
libtool libxml2-dev uuid-dev libssl-dev bash \
18+
patch make tar xz-utils bzip2 gzip sed cpio git zlib1g-dev \
19+
python3
1820

1921
RUN curl -L https://github.com/tpoechtrager/osxcross/archive/master.tar.gz | tar xz && \
2022
cd /osxcross-master/ && \

docker/darwin-x86.Dockerfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ RUN apt-get install -y --force-yes apt-utils apt-transport-https libcurl4-openss
1111
RUN echo "deb http://apt.llvm.org/stretch/ llvm-toolchain-stretch-4.0 main" >> /etc/apt/sources.list && \
1212
wget --no-check-certificate -qO - http://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && \
1313
apt-get update && \
14-
apt-get install -y --force-yes clang-4.0 llvm-4.0-dev automake autogen \
15-
libtool libxml2-dev uuid-dev libssl-dev bash \
16-
patch make tar xz-utils bzip2 gzip sed cpio git zlib1g-dev
14+
apt-get install -y --force-yes \
15+
clang-4.0 llvm-4.0-dev automake autogen \
16+
libtool libxml2-dev uuid-dev libssl-dev bash \
17+
patch make tar xz-utils bzip2 gzip sed cpio git zlib1g-dev \
18+
python3
1719

1820
RUN curl -L https://github.com/tpoechtrager/osxcross/archive/master.tar.gz | tar xz && \
1921
cd /osxcross-master/ && \

0 commit comments

Comments
 (0)