SuperMarioOdysseyOnline/Dockerfile
Robin C. Ladiges 1aa579595b
fix: Dockerfile warnings
2 warnings found (use --debug to expand):
- FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 1)
- JSONArgsRecommended: JSON arguments recommended for ENTRYPOINT to prevent unintended behavior related to OS signals (line 13)
2024-10-07 21:39:19 +02:00

13 lines
272 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" ]