mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-04 18:55:05 +00:00
6a5b5146b8
installing it via pacman everytime is unsupported and will lead to http 403 errors.
13 lines
266 B
Docker
13 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
|