Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. FROM base/archlinux
  2. MAINTAINER yantene
  3. LABEL OBJECT="Simple yantene's sandbox"
  4.  
  5. ENTRYPOINT ["/usr/bin/su", "-", "yantene"]
  6. RUN pacman -Syy
  7. RUN pacman --noconfirm -S neovim sudo
  8. RUN useradd -m -g users -G wheel yantene
  9. RUN echo yantene:'password' | /usr/bin/chpasswd
  10. RUN echo '%wheel ALL=(ALL)' > /etc/sudoers.d/wheel
  11. RUN chmod 0440 /etc/sudoers.d/wheel
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement