mirror of
https://github.com/rock88/moonlight-nx
synced 2024-11-10 06:14:15 +00:00
11 lines
393 B
Docker
11 lines
393 B
Docker
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"]
|