24 lines
939 B
Docker
24 lines
939 B
Docker
# This Docker image can change from one build to another, because the upstream
|
|
# Debian/Ubuntu package index is continuously updated and we have to run
|
|
# `apt-get update` in here.
|
|
#
|
|
# The only way to make this a part of our reproducible build system is to build
|
|
# it once, upload it to Docker Hub and make sure it's being pulled regularly so
|
|
# it's not deleted after 6 months of inactivity.
|
|
|
|
FROM ubuntu:20.04
|
|
|
|
SHELL ["/bin/bash", "-c"]
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive TZ="Etc/UTC"
|
|
RUN \
|
|
apt-get -qq update \
|
|
&& apt-get -qq -y install git gnupg software-properties-common lsb &>/dev/null \
|
|
&& apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 86B72ED9 \
|
|
&& add-apt-repository "deb [arch=amd64] https://pkg.mxe.cc/repos/apt $(lsb_release -sc) main" \
|
|
&& apt-get -qq update \
|
|
&& apt-get -qq -y install mxe-x86-64-w64-mingw32.static-cc &>/dev/null \
|
|
&& apt-get -qq clean \
|
|
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|