Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. from gitlab/gitlab-runner:alpine
  2.  
  3. ENV http_proxy=<corporate_proxy>
  4. ENV https_proxy=<corporate_proxy>
  5.  
  6. RUN apk add vim wget curl nmap lsof bash bash-completion which
  7.  
  8. CMD ["/bin/bash"]
  9. RUN ls -l /bin # THIS WORKS, I CAN SEE 'BASH' SHOW UP WITH 755 OWNED BY ROOT
  10. RUN which bash # THIS ALSO WORKS
  11. RUN /bin/bash -c "echo hi" # YES, THIS WORKS TOO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement