Browse Source
While fixing up pkg.mxe.cc they move the URLs around a bit and dropped Jessie support in favour of Stretch. We also need to update the keys used to verify the packages. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>remotes/github/stable-4.1
4 changed files with 14 additions and 11 deletions
@ -1,15 +1,18 @@ |
|||
# |
|||
# Docker mingw cross-compiler target |
|||
# |
|||
# This docker target builds on the debian Jessie base image. |
|||
# This docker target builds on the debian Stretch base image. |
|||
# |
|||
FROM qemu:debian8 |
|||
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 D43A795B73B16ABE9643FE1AFD8FFF16DB45C6AB && \ |
|||
echo "deb http://pkg.mxe.cc/repos/apt/debian jessie main" > /etc/apt/sources.list.d/mxeapt.list |
|||
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 |
|||
RUN DEBIAN_FRONTEND=noninteractive eatmydata \ |
|||
apt-get install -y --no-install-recommends \ |
|||
Loading…
Reference in new issue