File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
FROM fedora
2
2
MAINTAINER langdon <
[email protected] >
3
3
RUN yum clean all && yum -y update
4
- RUN yum -y install python python-pip make gcc krb5-devel python-devel python-setuptools python-gssapi python-nitrate python-dateutil python-urllib-gssapi
4
+ RUN yum -y install python python-pip make gcc krb5-devel python-devel python-setuptools python-gssapi python-nitrate python-dateutil python-urllib-gssapi git-core
5
5
RUN yum clean all
6
6
7
7
COPY . /opt/did
8
8
WORKDIR /opt/did
9
- RUN python setup.py install
9
+ RUN git config --global --add safe.directory '*' \
10
+ && python setup.py install \
11
+ && ln -s /did.conf /root/.did
10
12
#RUN ln -s /user-home/.did /root/.did
11
- RUN ln -s /did.conf /root/.did
12
13
13
14
VOLUME /did.conf
14
15
15
16
LABEL RUN docker run --privileged --rm -it -v $(HOME)/.did:/did.conf $(USERNAME)/did
16
17
17
- ENTRYPOINT ["/usr /bin/did"]
18
+ ENTRYPOINT ["/opt/did /bin/did"]
You can’t perform that action at this time.
0 commit comments