blob: c0879efb9f70ee7ac49f2b0b49d1289ea454e53f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
FROM nexus3.onap.org:10001/onap/aaf/aaf-base-xenial:latest
RUN git clone https://gerrit.onap.org/r/aaf/sshsm
RUN cd sshsm && \
cd tpm-util && \
cd duplicate && \
make -f sampleMakefile
RUN mkdir -p /dup/bin && \
cp sshsm/tpm-util/duplicate/ossl_tpm_duplicate /dup/bin && \
rm -rf sshsm
RUN mkdir -p /distcenter/bin
COPY ./create_ca.sh /distcenter/bin
ADD entrypoint.sh /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]
|