Advertisement
Guest User

Untitled

a guest
Aug 1st, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. FROM ubuntu:14.04
  2. MAINTAINER Ray Zhang
  3.  
  4. RUN apt-get update && \
  5. apt-get install -y wget python-setuptools python-dev && \
  6. rm -rf /var/lib/apt/lists/*
  7.  
  8. RUN easy_install pip
  9.  
  10. RUN wget "cm-star-jenkins1.symantec.com/job/USSE_Trunk_QA-Init/18/artifact/zip/functional_tests.zip"
  11.  
  12. RUN wget --user=qalabs --password=qalabs "ftp://10.0.0.17:21/Ray/test_helper.py"
  13.  
  14. RUN python test_helper.py clean && \
  15. python test_helper.py extract && \
  16. python test_helper.py run_setup && \
  17. python test_helper.py run_tests
  18.  
  19. WORKDIR /
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement