From 721da3482b0ece7a5bdfbaea0166ea60fb18dd8d Mon Sep 17 00:00:00 2001 From: William Allen <16820599+williamjallen@users.noreply.github.com> Date: Sat, 25 Mar 2023 22:57:06 -0400 Subject: [PATCH] [Bugfix:Plagiarism] Install JDK in Docker container (#97) --- Dockerfile | 5 +++-- requirements.txt | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 381bd02..9d3797a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,9 +6,10 @@ ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update \ && apt-get install -y \ libboost-all-dev \ - python3.10 \ + python3.8 \ python3-pip \ - clang-6.0 + clang-6.0 \ + default-jdk # Python Dependencies COPY requirements.txt /Lichen/requirements.txt diff --git a/requirements.txt b/requirements.txt index 823caeb..681a1a6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,7 +8,7 @@ parso==0.8.3 clang==14.0 # Java tokenization -javac_parser==1.0.0 +javac-parser==1.0.0 # turn data into human readable format humanize==4.6.0