From e0e1d2e1a8ace75b10099a08cd1e799262abe94d Mon Sep 17 00:00:00 2001 From: Isaac0-dev <62234577+Isaac0-dev@users.noreply.github.com> Date: Mon, 6 Jun 2022 12:12:23 +1000 Subject: [PATCH] Fix compiling on Docker (#125) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f36f10e3..c85714e9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:18.04 as build +FROM ubuntu:jammy as build RUN apt-get update && \ apt-get install -y \ @@ -13,5 +13,5 @@ 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=us -j4\n' \ +CMD echo 'usage: docker run --rm --mount type=bind,source="$(pwd)",destination=/sm64 sm64ex-coop make -j4 HEADLESS=1\n' \ 'see https://github.com/n64decomp/sm64/blob/master/README.md for advanced usage'