moonlight-nx/Dockerfile

12 lines
393 B
Docker
Raw Normal View History

2021-02-07 12:22:52 +00:00
FROM rock88/moonlight-nx-build:latest
# Add non-privileged build user
RUN useradd -m -s /bin/bash -G sudo build; passwd -d build
# Install fakeroot and updated git
RUN echo "deb http://deb.debian.org/debian stretch-backports main" >> /etc/apt/sources.list.d/stretch-backports.list &&\
apt-get update &&\
apt-get -t stretch-backports -y install git fakeroot
ENTRYPOINT ["/bin/bash"]