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