Advertisement
Guest User

Untitled

a guest
Jan 19th, 2020
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. FROM ubuntu:rolling
  2.  
  3. # Issues regard resolvconf solved with https://github.com/moby/moby/issues/1297
  4. RUN apt update \
  5. && apt-get -y install debconf-utils \
  6. && echo resolvconf resolvconf/linkify-resolvconf boolean false | debconf-set-selections \
  7. && apt-get -y install resolvconf \
  8.  
  9. # Run Installation Script
  10. && apt install curl sudo apt-utils dialog -y \
  11. && sudo -E bash -c "$(curl -s https://raw.githubusercontent.com/mysteriumnetwork/node/master/install.sh)"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement