Advertisement
Guest User

Untitled

a guest
May 20th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. FROM ubuntu:latest
  2. ENV HOME /root
  3. RUN apt-get update && \
  4. apt-get install -y \
  5. apt-utils \
  6. net-tools \
  7. build-essential \
  8. vim \
  9. git \
  10. tmux \
  11. python
  12.  
  13. RUN apt-get install -y \
  14. openvpn \
  15. unzip \
  16. wget \
  17. curl \
  18. python3-setuptools \
  19. python3-pip
  20. RUN echo "alias whereami='curl ipinfo.io'" >> ~/.bashrc
  21. WORKDIR $HOME
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement