Files
docker-qt/Dockerfile.mxe

30 lines
983 B
Docker
Raw Normal View History

2021-01-14 18:53:40 -05:00
FROM ubuntu:20.04
2020-06-06 16:50:44 -04:00
ENTRYPOINT ["/bin/bash"]
2022-04-24 16:34:14 -04:00
RUN echo 'Acquire::http { Proxy "http://192.168.1.2:3142"; };' >> /etc/apt/apt.conf.d/00proxy
2022-03-12 13:07:09 -05:00
2020-06-06 16:50:44 -04:00
RUN \
export DEBIAN_FRONTEND=noninteractive && \
apt -y update && \
apt -y upgrade && \
2020-06-06 17:14:56 -04:00
apt -y install \
2020-06-06 16:50:44 -04:00
autoconf automake autopoint bash bison build-essential bzip2 flex \
g++ g++-multilib gettext git gperf intltool iputils-ping libc6-dev-i386 \
libffi-dev libgdk-pixbuf2.0-dev libltdl-dev libssl-dev libtool-bin \
libxml-parser-perl lzip make nano openssl p7zip-full patch perl \
2022-04-24 16:34:14 -04:00
pkg-config ruby scons sed unzip wget xz-utils libgl-dev \
python3 python3-mako python3-pkg-resources python3-setuptools python-is-python3 \
&& \
2020-06-06 16:50:44 -04:00
apt -y autoremove && \
apt -y autoclean && \
apt -y clean && \
rm -rf /var/lib/apt/lists/* && \
exit 0
2022-04-10 19:44:18 -04:00
RUN \
cd /opt && \
git clone https://github.com/mxe/mxe.git && \
exit 0
ENV PATH="${PATH}:/opt/mxe/usr/bin"