From d206d555ebeacfde0b85ad000272ed09fd3aaf31 Mon Sep 17 00:00:00 2001 From: MisterSheeple <27652712+MisterSheeple@users.noreply.github.com> Date: Tue, 14 Nov 2023 05:57:18 -0500 Subject: [PATCH] Update Dockerfile to Ubuntu 22.04 as 18.04 is EOL + Clean up unused packages in Dockerfile (#538) * Update Dockerfile to Ubuntu 22.04 also: - Update packages for Dockerfile and instructions * Add missing package for hexdump * Make usage message consistent --- Dockerfile | 28 +++++++++------------------- 1 file changed, 9 insertions(+), 19 deletions(-) diff --git a/Dockerfile b/Dockerfile index e4f13f6d..587cb06b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,27 +1,17 @@ -FROM ubuntu:18.04 as build +FROM ubuntu:22.04 as build RUN apt-get update && \ apt-get install -y \ - binutils-mips-linux-gnu \ - bsdmainutils \ + bsdextrautils \ build-essential \ - libaudiofile-dev \ - python3 \ - wget \ git \ libglew-dev \ - libsdl2-dev + libsdl2-dev \ + python3 -RUN wget \ - https://github.com/n64decomp/qemu-irix/releases/download/v2.11-deb/qemu-irix-2.11.0-2169-g32ab296eef_amd64.deb \ - -O qemu.deb && \ - echo 8170f37cf03a08cc2d7c1c58f10d650ea0d158f711f6916da9364f6d8c85f741 qemu.deb | sha256sum --check && \ - dpkg -i qemu.deb && \ - rm qemu.deb +RUN mkdir /sm64ex +WORKDIR /sm64ex +ENV PATH="/sm64ex/tools:${PATH}" -RUN mkdir /sm64 -WORKDIR /sm64 -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' +CMD echo 'Usage: docker run --rm -v ${PWD}:/sm64ex sm64ex make BETTERCAMERA=1 EXTERNAL_DATA=1 -j4\n' \ + 'See https://github.com/sm64pc/sm64ex/wiki/Compiling-on-Docker for more information'