N64FlashcartMenu/.devcontainer/Dockerfile

16 lines
500 B
Docker
Raw Normal View History

2023-02-27 00:14:51 +01:00
FROM ghcr.io/n64-tools/gcc-toolchain-mips64:latest
2023-02-27 04:29:36 +01:00
RUN apt-get update && apt-get install -y python3 python3-serial python3-pil
RUN mkdir -p /etc/udev/rules.d
RUN echo 'KERNEL=="ttyUSB[0-9]*",MODE="0666' > /etc/udev/rules.d/99-serial.rules
2023-02-27 00:14:51 +01:00
RUN git clone --branch trunk https://github.com/dragonminded/libdragon.git --depth 1 ./sources/libdragon
RUN cd ./sources/libdragon && \
make -j libdragon && \
make install && \
make -j tools && \
make tools-install && \
make install-mk