Skip to content

Commit d51b721

Browse files
authored
Merge pull request #3 from Facthunder/4.0.0
Docker image for i-Code 4.0.0
2 parents 6fd43b7 + 0806b17 commit d51b721

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
FROM openjdk:8u222-slim-buster AS base
22

3-
ADD https://github.com/lequal/i-CodeCNES/releases/download/v3.1.0/i-CodeCNES-3.1.0-CLI-linux.gtk.x86_64.zip /
3+
ADD https://github.com/lequal/i-CodeCNES/releases/download/v4.0.0/icode-4.0.0.zip /
44

55
RUN apt-get update -y && \
66
apt-get install -y unzip && \
7-
unzip /i-CodeCNES-3.1.0-CLI-linux.gtk.x86_64.zip && \
7+
unzip /icode-4.0.0.zip && \
88
chmod +x /icode/icode
99

1010
FROM openjdk:8u222-slim-buster

README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,17 @@ This project aims to provide a simple Docker image to encapsulate and run an [i-
77
#### Run core checks
88
Assuming current directory contains the source code to analyze, simply run the following command:
99
```Dockerfile
10-
docker run --rm -v ${PWD}:/src facthunder/icode:latest -f xml -o report.xml **/* *
10+
docker run --rm -v ${PWD}:/src facthunder/icode:latest -f xml -o report.xml .
1111
```
1212

1313
### Versions matrix
1414
Here is the versions matrix of the image:
1515

16-
| TAG | IKOS VERSION | BASE IMAGE |
16+
| TAG | I-CODE VERSION | BASE IMAGE |
1717
|:------------------------------------------------------:|:------------------------------------------------------------:|:------------------------------------------------------:|
18-
| [latest](https://hub.docker.com/r/facthunder/i-code) | [3.1.0](https://github.com/lequal/i-CodeCNES/releases/tag/v3.1.0) | [openjdk:8u222-slim-buster](https://hub.docker.com/_/openjdk) |
19-
| [3.1.0](https://hub.docker.com/r/facthunder/i-code) | [3.1.0](https://github.com/lequal/i-CodeCNES/releases/tag/v3.1.0) | [openjdk:8u222-slim-buster](https://hub.docker.com/_/openjdk) |
18+
| [latest](https://hub.docker.com/r/facthunder/i-code) | [4.0.0](https://github.com/lequal/i-CodeCNES/releases/tag/v4.0.0) | [openjdk:8u222-slim-buster](https://hub.docker.com/_/openjdk) |
19+
| [4.0.0](https://hub.docker.com/r/facthunder/i-code) | [4.0.0](https://github.com/lequal/i-CodeCNES/releases/tag/v4.0.0) | [openjdk:8u222-slim-buster](https://hub.docker.com/_/openjdk) |
20+
| [3.1.0](https://hub.docker.com/r/facthunder/i-code) | [3.1.0](https://github.com/lequal/i-CodeCNES/releases/tag/v3.1.0) | [openjdk:8u222-slim-buster](https://hub.docker.com/_/openjdk) |
2021

2122

2223
### How to contribute
@@ -25,6 +26,6 @@ If you experienced a problem with the plugin please open an issue. Inside this i
2526
If you want to do a PR, please put inside of it the reason of this pull request. If this pull request fix an issue please insert the number of the issue or explain inside of the PR how to reproduce this issue.
2627

2728
### License
28-
Copyright 2019 Facthunder.
29+
Copyright 2020 Facthunder.
2930

3031
Licensed under the [GNU General Public License, Version 3.0](https://www.gnu.org/licenses/gpl.txt)

0 commit comments

Comments
 (0)