This commit is contained in:
Faraz Fallahi
2020-06-06 16:50:44 -04:00
parent 62f9fd016d
commit a42a4f6238
13 changed files with 105 additions and 70 deletions

18
Dockerfile.mxe Normal file
View File

@@ -0,0 +1,18 @@
FROM ubuntu:latest
ENTRYPOINT ["/bin/bash"]
RUN \
export DEBIAN_FRONTEND=noninteractive && \
apt -y update && \
apt -y upgrade && \
apt -y install
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 ruby scons sed unzip wget xz-utils && \
apt -y autoremove && \
apt -y autoclean && \
apt -y clean && \
rm -rf /var/lib/apt/lists/* && \
exit 0