mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-28 00:38:56 +00:00
13 lines
727 B
Docker
13 lines
727 B
Docker
|
FROM hirs/hirs-ci:centos7
|
||
|
|
||
|
# Install packages for installing HIRS TPM2 Provisioner
|
||
|
RUN yum -y update && yum clean all
|
||
|
# TODO: Remove vim-common if/when Paccor updates (Also update Paccor version below)
|
||
|
RUN yum install -y tpm2-tools libcurl procps-ng vim-common wget dbus python-requests && yum clean all
|
||
|
|
||
|
# Install PACCOR for Device Info Gathering
|
||
|
RUN mkdir paccor && pushd paccor && wget https://github.com/nsacyber/paccor/releases/download/v1.0.6r3/paccor-1.0.6-3.noarch.rpm && yum -y install paccor-*.rpm && popd
|
||
|
|
||
|
# Install Software TPM for Provisioning
|
||
|
RUN mkdir ibmtpm && pushd ibmtpm && wget https://downloads.sourceforge.net/project/ibmswtpm2/ibmtpm974.tar.gz && tar -zxvf ibmtpm974.tar.gz && cd src && make -j5 && popd
|