Files
docker-qt/Dockerfile.mxe

28 lines
893 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-03-12 13:07:09 -05:00
#RUN echo 'Acquire::http { Proxy "http://192.168.1.2:3142"; };' >> /etc/apt/apt.conf.d/00proxy
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 \
pkg-config python python-mako ruby scons sed unzip wget xz-utils && \
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"