From 54f4cf2ca4e0b8856bf007f510236390b704ea4f Mon Sep 17 00:00:00 2001 From: Prabhu Subramanian Date: Sun, 2 Apr 2023 23:53:34 +0000 Subject: [PATCH] Remove default java opts Signed-off-by: Prabhu Subramanian --- Dockerfile | 3 +-- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index be00df8..05bff1a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,10 +26,9 @@ ENV JOERN_HOME=/opt/joern/joern-cli \ COPY . /usr/local/src/ RUN echo -e "[nodejs]\nname=nodejs\nstream=18\nprofiles=\nstate=enabled\n" > /etc/dnf/modules.d/nodejs.module \ - && microdnf install -y gcc git-core php php-cli python3 python3-devel pcre2 which tar zip unzip sudo java-1.8.0-openjdk-headless \ + && microdnf install -y gcc git-core php php-cli python3 python3-devel pcre2 which tar zip unzip sudo \ java-17-openjdk-headless ncurses jq krb5-libs libicu openssl-libs compat-openssl11 zlib \ dotnet-sdk-7.0 dotnet-targeting-pack-7.0 dotnet-templates-7.0 dotnet-hostfxr-7.0 nodejs \ - && alternatives --set java java-17-openjdk.x86_64 \ && curl -LO https://github.com/joernio/joern/releases/latest/download/joern-install.sh \ && chmod +x ./joern-install.sh \ && ./joern-install.sh \ diff --git a/pyproject.toml b/pyproject.toml index d22ab5f..939a95a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cpggen" -version = "0.6.1" +version = "0.6.2" description = "Generate CPG for multiple languages for use with joern" authors = ["Team AppThreat "] license = "Apache-2.0"