sm64coopdx/Dockerfile

21 lines
546 B
Docker
Raw Permalink Normal View History

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