Advertisement
Guest User

Untitled

a guest
Sep 4th, 2017
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. FROM library/node:6.11.2
  2.  
  3. RUN apt-get update && \
  4. apt-get install -y \
  5. python3 \
  6. python3-pip \
  7. python3-setuptools \
  8. groff \
  9. less \
  10. && pip3 --no-cache-dir install --upgrade awscli \
  11. && apt-get clean
  12.  
  13. CMD ["/bin/bash"]
  14.  
  15. # docker build .
  16. # will still throw the "no such option: --no-cache-dir" error
  17. # ad https://stackoverflow.com/a/46039283/419956
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement