Guest User

Untitled

a guest
May 3rd, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. RUN apt-get update &&
  2. apt-get install -y apache2
  3.  
  4. RUN apt-get update &&
  5. apt-get install -y apache2
  6.  
  7. CMD ["service" "apache2", "start"]
  8.  
  9. RUN apt-get update &&
  10. apt-get install -y apache2
  11.  
  12. COPY ./apache2_start.sh /root/apache2_start.sh
  13.  
  14. CMD ["chmod", "777", "/root/apache2_start.sh"]
  15.  
  16. CMD ["/root/apache2_start.sh"]
  17.  
  18. service apache2 start
  19. echo "127.0.0.1"
Add Comment
Please, Sign In to add comment