From 91169c1083a7d8ddf39288668a5fc88826e5ddcb Mon Sep 17 00:00:00 2001 From: iadgovuser58 <124906646+iadgovuser58@users.noreply.github.com> Date: Wed, 16 Aug 2023 09:45:30 -0400 Subject: [PATCH] removed a couple lines of commented code --- .ci/docker/Dockerfile.rocky88ci | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.ci/docker/Dockerfile.rocky88ci b/.ci/docker/Dockerfile.rocky88ci index 23ed08a8..d1576077 100644 --- a/.ci/docker/Dockerfile.rocky88ci +++ b/.ci/docker/Dockerfile.rocky88ci @@ -1,7 +1,7 @@ FROM rockylinux:8.8 # Purpose: This image is designed for HIRS ci testing on Rocky Linux -# Date Modified: 8/10/23 +# Date Modified: 8/16/23 # Notes: # * This image installs java, installs project dependencies, and runs gradlew to download gradlew # dependencies. This saves time during a docker run. This also means the image should be @@ -24,10 +24,6 @@ RUN dnf -y update # Install Java 17 RUN dnf -y install java-17-openjdk-devel -# Set Environment Variables -#ENV JAVA_HOME=/usr/lib/jvm/java-17-openjdk -#ENV PATH="$JAVA_HOME/bin:$PATH" - # Ports needed for system-level tests EXPOSE 8080 EXPOSE 8443 @@ -52,7 +48,6 @@ RUN dnf -y install mariadb-server initscripts firewalld policycoreutils net-tool # RUN dnf makecache # RUN dnf -y install dotnet-sdk-6.0 # RUN dotnet tool install --global dotnet-rpm -# ?? need this?: RUN PATH="~/.dotnet/tools:${PATH}" # Checkout HIRS main branch and run gradlew to install gradlew dependencies, then delete HIRS # Use '--depth=1' so as to not download the history of all commits