Update Dockerfile

This commit is contained in:
rock88 2021-02-07 15:22:52 +03:00
parent 2d3ab6125b
commit 7f05e10705

View file

@ -1,4 +1,4 @@
FROM devkitpro/devkita64
FROM rock88/moonlight-nx-build:latest
# Add non-privileged build user
RUN useradd -m -s /bin/bash -G sudo build; passwd -d build
@ -8,13 +8,4 @@ RUN echo "deb http://deb.debian.org/debian stretch-backports main" >> /etc/apt/s
apt-get update &&\
apt-get -t stretch-backports -y install git fakeroot
# Install devkitpro-pkgbuild-helpers
RUN dkp-pacman -S --noconfirm libnx
# Print installed pacman packages
RUN echo `dkp-pacman -Sl`
# Upgrade installed packages
RUN dkp-pacman -Suy --noconfirm
ENTRYPOINT ["/bin/bash"]