Files
SpaghettiKart/Dockerfile
T
MisterSheeple 8b3577c214 Upgrade Dockerfile to Ubuntu 22.04 as 18.04 is EOL (#491)
* Upgrade Dockerfile to Ubuntu 22.04 as 18.04 is EOL

* Update dependencies to use current ones

* Remove extra package that I don't think is required

* Remove use of old qemu irix

* Update and rename Dockerfile-ci to Dockerfile

* Add docker instructions to README
2023-11-07 22:36:48 -07:00

20 lines
492 B
Docker

FROM ubuntu:22.04 as build
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
binutils-mips-linux-gnu \
build-essential \
libaudiofile-dev \
libcapstone-dev \
git \
pkg-config \
python3 \
wget \
zlib1g-dev
RUN mkdir /mk64
WORKDIR /mk64
CMD echo 'Usage: docker run -it --rm -v ${PWD}:/mk64 mk64 make\n'\
'See https://github.com/n64decomp/mk64/blob/master/README.md for more information'