Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update base image to cater vulnerabilities #303

Merged
merged 7 commits into from
Aug 18, 2021
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## [v5.10.0.7] - 2021-08-18

### Changed
- Upgrade base docker image to fix the detected high security vulnerability. (refer to [issue](https://github.com/wso2/docker-is/issues/302)

## [v5.10.0.6] - 2021-02-23

### Changed
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/alpine/is/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
# ------------------------------------------------------------------------

# set base Docker image to AdoptOpenJDK Alpine Docker image
FROM adoptopenjdk/openjdk11:jdk-11.0.10_9-alpine
FROM adoptopenjdk/openjdk11:jdk-11.0.11_9-alpine
LABEL maintainer="WSO2 Docker Maintainers <[email protected]>" \
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.10.0.6"
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.10.0.7"

# set Docker image build arguments
# build arguments for user/group configurations
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/centos/is/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
# ------------------------------------------------------------------------

# set base Docker image to AdoptOpenJDK CentOS Docker image
FROM adoptopenjdk/openjdk11:x86_64-centos-jdk-11.0.10_9
FROM adoptopenjdk/openjdk11:x86_64-centos-jdk-11.0.11_9
LABEL maintainer="WSO2 Docker Maintainers <[email protected]>" \
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.10.0.6"
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.10.0.7"

# set Docker image build arguments
# build arguments for user/group configurations
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/ubuntu/is/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
# ------------------------------------------------------------------------

# set base Docker image to AdoptOpenJDK Ubuntu Docker image
FROM adoptopenjdk:11.0.10_9-jdk-hotspot-focal
FROM adoptopenjdk:11.0.11_9-jdk-hotspot-focal
LABEL maintainer="WSO2 Docker Maintainers <[email protected]>" \
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.10.0.6"
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.10.0.7"

# set Docker image build arguments
# build arguments for user/group configurations
Expand Down