Update Dockerfile to latest Ubuntu LTS + fixed missing cmake (#674)

This commit is contained in:
MisterSheeple 2024-09-04 19:36:21 -04:00 committed by GitHub
parent b3aa6eceda
commit 36ff32f9b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 5 deletions

View File

@ -1,19 +1,20 @@
FROM ubuntu:22.04 as build
FROM ubuntu:24.04 as build
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
apt-get upgrade -y && \
apt-get install -y \
binutils-mips-linux-gnu \
build-essential \
cmake \
git \
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'\
CMD echo 'Usage: docker run --rm -v ${PWD}:/mk64 mk64 make\n'\
'See https://github.com/n64decomp/mk64/blob/master/README.md for more information'