Files
Microtransactions64/Dockerfile

19 lines
520 B
Docker
Raw Normal View History

FROM ubuntu:22.04 as build
2020-03-31 20:11:48 -07:00
2020-04-02 10:50:36 -07:00
RUN apt-get update && \
apt-get install -y \
binutils-mips-linux-gnu \
bsdextrautils \
2020-04-02 10:50:36 -07:00
build-essential \
gcc-mips-linux-gnu \
2020-12-03 14:26:38 -05:00
libcapstone-dev \
pkgconf \
python3
2020-03-31 20:11:48 -07:00
RUN mkdir /hackersm64
WORKDIR /hackersm64
ENV PATH="/hackersm64/tools:${PATH}"
2020-03-31 20:11:48 -07:00
CMD echo 'Usage: docker run --rm -v ${PWD}:/hackersm64 hackersm64 make VERSION=us -j4\n' \
'See https://github.com/HackerN64/HackerSM64/blob/master/README.md for more information'