mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-22 22:32:27 +00:00
00287725da
* [#195] Components identified by Component Class will have hardware IDs translated to names * Update TPM Docker images to latest PACCOR(v1.1.3r3). Comment out the failing system tests caused by invalid input to PACCOR.
12 lines
634 B
Docker
12 lines
634 B
Docker
FROM hirs/hirs-ci:centos7
|
|
|
|
# Install packages for installing HIRS TPM2 Provisioner
|
|
RUN yum -y update && yum clean all
|
|
RUN yum install -y tpm2-tools libcurl procps-ng 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.1.3r3/paccor-1.1.3-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/ibmtpm1332.tar.gz && tar -zxvf ibmtpm1332.tar.gz && cd src && make -j5 && popd
|