Skip to content
This repository was archived by the owner on Jun 28, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ RUN wget https://downloads.apache.org/maven/maven-3/$MAVEN_VERSION/binaries/apac
rm apache-maven-$MAVEN_VERSION-bin.tar.gz && \
mv apache-maven-$MAVEN_VERSION $MAVEN_HOME

#SETUP codeql cli v2.21.2
RUN wget https://github.com/github/codeql-cli-binaries/releases/download/v2.21.2/codeql-linux64.zip && \
#SETUP codeql cli v2.21.3
RUN wget https://github.com/github/codeql-cli-binaries/releases/download/v2.21.3/codeql-linux64.zip && \
unzip codeql-linux64.zip && \
rm codeql-linux64.zip

Expand Down
4 changes: 2 additions & 2 deletions docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ JAVA runtime provided by CodeQL CLI is used
Pull from [DockerHub](https://hub.docker.com/r/arburk/codeql-analyzer-java):
`docker pull arburk/codeql-analyzer-java`
or build image like following:
`docker build . -t arburk/codeql-analyzer-java:2.21.2`
`docker build . -t arburk/codeql-analyzer-java:2.21.3`

The project to scan needs to be mounted into ___/workdir/project2scan/___ like following:
`docker run -v c:/dev/repos/myJavaProject:/workdir/project2scan arburk/codeql-analyzer-java:2.21.2`
`docker run -v c:/dev/repos/myJavaProject:/workdir/project2scan arburk/codeql-analyzer-java:2.21.3`
Loading