2022-06-06 02:12:23 +00:00
|
|
|
FROM ubuntu:jammy as build
|
2020-04-01 03:11:48 +00:00
|
|
|
|
2020-04-02 17:50:36 +00:00
|
|
|
RUN apt-get update && \
|
|
|
|
apt-get install -y \
|
|
|
|
binutils-mips-linux-gnu \
|
|
|
|
bsdmainutils \
|
|
|
|
build-essential \
|
2022-03-13 08:17:10 +00:00
|
|
|
libcapstone-dev \
|
|
|
|
pkgconf \
|
2022-10-01 03:02:55 +00:00
|
|
|
python3 \
|
|
|
|
libz-dev
|
2020-04-01 03:11:48 +00:00
|
|
|
|
|
|
|
RUN mkdir /sm64
|
|
|
|
WORKDIR /sm64
|
2020-06-02 16:44:34 +00:00
|
|
|
ENV PATH="/sm64/tools:${PATH}"
|
2020-04-01 03:11:48 +00:00
|
|
|
|
2022-10-01 03:02:55 +00:00
|
|
|
# docker build -t sm64ex-coop .
|
|
|
|
# docker run --rm --mount type=bind,source="$(pwd)",destination=/sm64 sm64ex-coop make -j HEADLESS=1
|
|
|
|
# see https://github.com/n64decomp/sm64/blob/master/README.md for advanced usage
|