mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-25 17:54:15 +00:00
f9bdb1d58a
* Makefile machinery work
* Updating Jenkinsfile
* Initial setup for OSX repo support
* Adding ido7 to repo
* Makefile reversion
* Iniital Dockerfile
* Docker stuff
* fixbaserom cleanup
* Attempting to fix fixbaserom
* baserom_original -> input
* Revert "baserom_original -> input"
This reverts commit d9199462b6
.
* Spiffing up readme for OSX
24 lines
644 B
Docker
24 lines
644 B
Docker
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 \
|
|
unzip
|
|
|
|
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
|
|
|
|
RUN mkdir /oot
|
|
WORKDIR /oot
|