mirror of
https://github.com/Amethyst-szs/SuperMarioOdysseyOnline
synced 2025-10-06 00:13:16 +02:00
14 lines
266 B
Docker
14 lines
266 B
Docker
FROM devkitpro/devkita64:latest as builder
|
|
|
|
# install dependencies
|
|
RUN apt-get update \
|
|
&& apt-get install -y \
|
|
python3 \
|
|
python3-pip \
|
|
&& pip3 install keystone-engine \
|
|
;
|
|
|
|
WORKDIR /app/
|
|
|
|
ENTRYPOINT make
|