We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7b8d09 commit e3eff8eCopy full SHA for e3eff8e
Dockerfile
@@ -0,0 +1,13 @@
1
+FROM python:2.7
2
+
3
+RUN echo "deb http://research.cs.wisc.edu/htcondor/ubuntu/stable/ trusty contrib" >> /etc/apt/sources.list &&\
4
+ echo "deb http://research.cs.wisc.edu/htcondor/ubuntu/development/ trusty contrib" >> /etc/apt/sources.list &&\
5
+ curl http://research.cs.wisc.edu/htcondor/ubuntu/HTCondor-Release.gpg.key | apt-key add - &&\
6
+ apt-get update &&\
7
+ apt-get -y install condor &&\
8
+ cd /usr/local/lib/python2.7/site-packages &&\
9
+ cp /usr/lib/python2.7/dist-packages/htcondor.so . &&\
10
+ cp /usr/lib/python2.7/dist-packages/classad.so .
11
12
13
+RUN condor_status -h
0 commit comments