sm64

A Super Mario 64 decompilation
Log | Files | Refs | README | LICENSE

Dockerfile (453B)


      1 FROM ubuntu:18.04 as build
      2 
      3 RUN apt-get update && \
      4     apt-get install -y \
      5         binutils-mips-linux-gnu \
      6         build-essential \
      7         git \
      8         pkgconf \
      9         python3
     10 
     11 RUN mkdir /sm64
     12 WORKDIR /sm64
     13 ENV PATH="/sm64/tools:${PATH}"
     14 
     15 CMD echo 'usage: docker run --rm --mount type=bind,source="$(pwd)",destination=/sm64 sm64 make VERSION=us -j4\n' \
     16          'see https://github.com/n64decomp/sm64/blob/master/README.md for advanced usage'