Skip to content

Commit e3eff8e

Browse files
authored
Create Dockerfile
1 parent d7b8d09 commit e3eff8e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Dockerfile

+13
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)