sm64/Dockerfile
Sean Maas 0453c965ec Experimental audio support
Special thanks to Arisotura for helping out :)
2021-02-23 02:39:56 -05:00

10 lines
357 B
Docker

FROM devkitpro/devkitarm:latest as build
RUN apt update
RUN apt -y install build-essential bsdmainutils sox
RUN mkdir /sm64
WORKDIR /sm64
CMD echo 'usage: docker run --rm --mount type=bind,source="$(pwd)",destination=/sm64 sm64dsi make VERSION=us COMPILER=gcc -j4\n' \
'see https://github.com/Hydr8gon/sm64/blob/nds/README.md for advanced usage'