Skip to content

Commit 8577545

Browse files
authored
Fixes to ensure CodeQL can work with Java projects (#13)
* Fixes to ensure CodeQL can work with Java projects * Removed debug noise from Dockerfile
1 parent f1b4eb5 commit 8577545

File tree

5 files changed

+2
-2
lines changed

5 files changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ RUN apt-get update && \
3535
ln -s /usr/bin/python3.8 /usr/bin/python && \
3636
ln -s /usr/bin/pip3 /usr/bin/pip
3737

38-
# Install .NET Core for tools/builds
38+
# Install .NET Core and Java for tools/builds
3939
RUN cd /tmp && \
4040
wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb && \
4141
dpkg -i packages-microsoft-prod.deb && \
4242
apt-get update; \
43-
apt-get install -y apt-transport-https && \
43+
apt-get install -y default-jdk apt-transport-https && \
4444
apt-get update && \
4545
rm packages-microsoft-prod.deb
4646
RUN apt-get install -y dotnet-sdk-3.1

container/setup.py

100644100755
File mode changed.

container/startup.py

100644100755
File mode changed.

scripts/unix/analyze_security.sh

100644100755
File mode changed.

scripts/unix/run_ql_suite.sh

100644100755
File mode changed.

0 commit comments

Comments
 (0)