mirror of https://github.com/xemu-project/xemu.git
13 lines
404 B
Docker
13 lines
404 B
Docker
![]() |
#
|
||
|
# Docker cross-compiler target
|
||
|
#
|
||
|
# This docker target builds on the debian sid base image which
|
||
|
# contains cross compilers for Debian "ports" targets.
|
||
|
#
|
||
|
FROM qemu:debian-sid
|
||
|
|
||
|
RUN DEBIAN_FRONTEND=noninteractive eatmydata \
|
||
|
apt-get install -y --no-install-recommends \
|
||
|
gcc-alpha-linux-gnu \
|
||
|
libc6.1-dev-alpha-cross || { echo "Failed to build - see debian-sid.docker notes"; exit 1; }
|