mirror of
https://github.com/nsacyber/HIRS.git
synced 2025-02-22 18:22:37 +00:00
* [#46] Ensure Travis mounts repository rather than clones it in Docker * [#46] Containerize HIRS ACA and prep ACA container for Integration Tests * [#46] Containerize HIRS TPM2Provisioner and prep TPM2Provisioner container for Integration Tests * [#46] Replace localinstall with install * [#46] Prevent rebuilding of packages unnecessarily * [#46] Finish initial docker compose setup for integration tests * [#46] Allow for detection of complete Integration Environment Setup * [#46] Fix Travis CI to allow for detecting Integ Test Environ Stand-Up * [#46] Fix Initial Integration Test Script * [#46] Troubleshoot Integration Test script
11 lines
324 B
Docker
11 lines
324 B
Docker
FROM hirs/hirs-ci:centos7
|
|
|
|
MAINTAINER apl.dev3@jhuapl.edu
|
|
|
|
# Install packages for installing HIRS ACA
|
|
RUN yum -y update && yum clean all
|
|
RUN yum install -y mariadb-server openssl tomcat java-1.8.0 rpmdevtools coreutils initscripts chkconfig sed grep firewalld policycoreutils && yum clean all
|
|
|
|
# Expose ACA Port
|
|
EXPOSE 8443
|