Guest User

Untitled

a guest
Aug 20th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. # Use php as parent image
  2. FROM ruby:2.4-slim
  3.  
  4. # Install core prerequisites
  5. RUN apt-get update && apt-get install -y php5.6 python-pip python-dev build-essential zip software-properties-common wget
  6.  
  7. # Install awscli
  8. RUN pip install awscli
  9.  
  10. image:
  11. name: xxx/adzooma-ruby:v1
  12. username: $DOCKER_HUB_USERNAME
  13. password: $DOCKER_HUB_PASSWORD
  14.  
  15. pipelines:
  16. tags:
  17. release-*:
  18. - step:
  19. script:
  20. - wget https://wordpress.org/latest.tar.gz
  21. ...
  22.  
  23. + wget https://wordpress.org/latest.tar.gz
  24. bash: wget: command not found
Add Comment
Please, Sign In to add comment