You've already forked Microtransactions64
mirror of
https://github.com/Print-and-Panic/Microtransactions64.git
synced 2026-01-21 10:17:19 -08:00
* Update Dockerfile to Ubuntu 22.04 as 18.04 is EOL * Dockerfile: Use modern syntax for mounting * Add gcc-mips-linux-gnu to dockerfile
19 lines
520 B
Docker
19 lines
520 B
Docker
FROM ubuntu:22.04 as build
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y \
|
|
binutils-mips-linux-gnu \
|
|
bsdextrautils \
|
|
build-essential \
|
|
gcc-mips-linux-gnu \
|
|
libcapstone-dev \
|
|
pkgconf \
|
|
python3
|
|
|
|
RUN mkdir /hackersm64
|
|
WORKDIR /hackersm64
|
|
ENV PATH="/hackersm64/tools:${PATH}"
|
|
|
|
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'
|