papermario/Dockerfile

36 lines
862 B
Docker
Raw Normal View History

2020-04-24 06:26:17 +02:00
FROM ubuntu:18.04 as build
RUN apt-get update && \
apt-get install -y \
binutils-mips-linux-gnu \
build-essential \
pkg-config \
python3 \
python3-pip \
wget \
git \
2020-04-24 09:04:30 +02:00
unzip \
nano \
libcapstone-dev \
libyaml-dev \
2020-04-27 21:43:21 +02:00
zlib1g-dev \
vbindiff
2020-04-24 06:26:17 +02:00
RUN wget \
https://github.com/n64decomp/qemu-irix/releases/download/v2.11-deb/qemu-irix-2.11.0-2169-g32ab296eef_amd64.deb \
-O qemu.deb && \
echo 8170f37cf03a08cc2d7c1c58f10d650ea0d158f711f6916da9364f6d8c85f741 qemu.deb | sha256sum --check && \
dpkg -i qemu.deb && \
rm qemu.deb
RUN python3 -m pip install --user colorama ansiwrap attrs watchdog python-Levenshtein
2020-04-28 08:16:54 +02:00
RUN git clone https://github.com/aquynh/capstone.git && \
cd capstone && \
git checkout tags/4.0 && \
./make.sh && \
./make.sh install
2020-04-24 06:26:17 +02:00
RUN mkdir /pm
WORKDIR /pm