Update Dockerfile to Ubuntu 22.04 as 18.04 is EOL

also:

- fix some things that probably broke building before because it was made for the original decomp
This commit is contained in:
MisterSheeple 2023-11-15 08:26:51 +00:00 committed by GitHub
parent 648b85dbb6
commit 325e836afe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,24 +1,16 @@
FROM ubuntu:18.04 as build FROM ubuntu:22.04 as build
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y \ apt-get install -y \
binutils-mips-linux-gnu \
bsdmainutils \
build-essential \ build-essential \
libaudiofile-dev \ git \
python3 \ libglew-dev \
wget libsdl2-dev \
python3
RUN wget \ RUN mkdir /render96ex
https://github.com/n64decomp/qemu-irix/releases/download/v2.11-deb/qemu-irix-2.11.0-2169-g32ab296eef_amd64.deb \ WORKDIR /render96ex
-O qemu.deb && \ ENV PATH="/render96ex/tools:${PATH}"
echo 8170f37cf03a08cc2d7c1c58f10d650ea0d158f711f6916da9364f6d8c85f741 qemu.deb | sha256sum --check && \
dpkg -i qemu.deb && \
rm qemu.deb
RUN mkdir /sm64 CMD echo 'Usage: docker run --rm -v ${PWD}:/render96ex render96ex make VERSION=${VERSION:-us} -j4\n' \
WORKDIR /sm64 'See https://github.com/Render96/Render96ex/blob/master/README.md for more information'
ENV PATH="/sm64/tools:${PATH}"
CMD echo 'usage: docker run --rm --mount type=bind,source="$(pwd)",destination=/sm64 sm64 make VERSION=${VERSION:-us} -j4\n' \
'see https://github.com/n64decomp/sm64/blob/master/README.md for advanced usage'