mirror of https://gitee.com/openkylin/qemu.git
23 lines
843 B
Docker
23 lines
843 B
Docker
#
|
|
# Docker mingw cross-compiler target
|
|
#
|
|
# This docker target builds on the debian Stretch base image.
|
|
#
|
|
FROM qemu:debian9
|
|
|
|
MAINTAINER Philippe Mathieu-Daudé <f4bug@amsat.org>
|
|
|
|
RUN DEBIAN_FRONTEND=noninteractive eatmydata \
|
|
apt install -y --no-install-recommends gnupg dirmngr
|
|
|
|
# Add the foreign architecture we want and install dependencies
|
|
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C6BF758A33A3A276 && \
|
|
echo "deb http://pkg.mxe.cc/repos/apt stretch main" > /etc/apt/sources.list.d/mxeapt.list
|
|
RUN apt-get update && \
|
|
DEBIAN_FRONTEND=noninteractive eatmydata \
|
|
apt-get install -y --no-install-recommends \
|
|
libpython2.7-stdlib \
|
|
$(apt-get -s install -y --no-install-recommends gw32.shared-mingw-w64 | egrep "^Inst mxe-x86-64-unknown-" | cut -d\ -f2)
|
|
|
|
ENV PATH $PATH:/usr/lib/mxe/usr/bin/
|