Sign inSign up

silentyang/atmosphere-builder

By silentyang

Updated over 7 years ago

Image
0

239

silentyang/atmosphere-builder repository overview

使用方法 Usage

wget https://raw.githubusercontent.com/568875138/Atmosphere-autobuild/autobuild/entrypoint.sh -o <source-path>/entrypoint.sh
docker run -it -v <source-path>:/developer silentyang/atmosphere-builder

Dockerfile

FROM devkitpro/devkita64
MAINTAINER elelphatp "[email protected]"

RUN mkdir ${DEVKITPRO}/devkitARM && \
    wget https://github.com/devkitPro/buildscripts/releases/download/devkitARM_r50/devkitARM_r50-linux.tar.xz && \
    tar xvJf devkitARM_r50-linux.tar.xz -C ${DEVKITPRO} && \
    git clone --recurse-submodules  https://github.com/switchbrew/libnx && cd libnx && \
    make -j8 && make install

RUN apt update && apt install -y python3 python3-pip zip && \
    pip3 install pycrypto pycryptoplus && \
    ln -s /usr/bin/python3 /usr/bin/python

ENV DEVKITARM=${DEVKITPRO}/devkitARM

WORKDIR /developer

ENTRYPOINT ["sh","entrypoint.sh"]

entrypoint.sh

make -j8 && make dist

Tag summary

Content type

Image

Digest

Size

602.9 MB

Last updated

over 7 years ago

docker pull silentyang/atmosphere-builder