mirror of
				https://github.com/coop-deluxe/sm64coopdx.git
				synced 2025-10-30 08:01:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			546 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			546 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM ubuntu:jammy as build
 | 
						|
 | 
						|
RUN apt-get update && \
 | 
						|
    apt-get install -y \
 | 
						|
        binutils-mips-linux-gnu \
 | 
						|
        bsdmainutils \
 | 
						|
        build-essential \
 | 
						|
        libcapstone-dev \
 | 
						|
        pkgconf \
 | 
						|
        python3 \
 | 
						|
        libz-dev \
 | 
						|
        libcurl4-openssl-dev
 | 
						|
 | 
						|
RUN mkdir /sm64
 | 
						|
WORKDIR /sm64
 | 
						|
ENV PATH="/sm64/tools:${PATH}"
 | 
						|
 | 
						|
# docker build -t sm64coopdx .
 | 
						|
# docker run --rm --mount type=bind,source="$(pwd)",destination=/sm64 sm64coopdx make -j HEADLESS=1 
 | 
						|
# see https://github.com/n64decomp/sm64/blob/master/README.md for advanced usage
 |