-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from MisterSheeple/patch-1
Update Dockerfile to Ubuntu 22.04 as 18.04 is EOL
- Loading branch information
Showing
2 changed files
with
10 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
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 \ | ||
git \ | ||
libsdl2-dev \ | ||
pkg-config \ | ||
python3 \ | ||
wget | ||
pkgconf \ | ||
python3 | ||
|
||
RUN mkdir /sm64 | ||
WORKDIR /sm64 | ||
ENV PATH="/sm64/tools:${PATH}" | ||
RUN mkdir /sm64ex-alo | ||
WORKDIR /sm64ex-alo | ||
ENV PATH="/sm64ex-alo/tools:${PATH}" | ||
|
||
CMD echo 'usage: docker run --rm --mount type=bind,source="$(pwd)",destination=/sm64 sm64 make 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-alo sm64ex-alo make VERSION=us -j4\n' \ | ||
'See https://github.com/AloUltraExt/sm64ex-alo/blob/master/README.md for more information' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters