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

[3.2.x] Update os packages in Ubuntu image #467

Merged
merged 2 commits into from
Apr 21, 2022
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 @@ All notable changes to Docker and Docker Compose resources for WSO2 API Manageme

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

## [v3.2.0.6] - 2022-04-21

### Changed
- Updated Ubuntu based images for APIM and APIM Analytics to update the OS packages at build time.

## [v3.2.0.4] - 2022-03-04

### Changed
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/alpine/apim-analytics/dashboard/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ RUN echo Verifying install ... \
&& echo Complete.

LABEL maintainer="WSO2 Docker Maintainers <dev@wso2.org>" \
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.2.0.4"
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.2.0.6"

# set Docker image build arguments
# build arguments for user/group configurations
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/alpine/apim-analytics/worker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ RUN echo Verifying install ... \
&& echo Complete.

LABEL maintainer="WSO2 Docker Maintainers <dev@wso2.org>" \
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.2.0.4"
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.2.0.6"

# set Docker image build arguments
# build arguments for user/group configurations
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/alpine/apim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ RUN echo Verifying install ... \
&& echo Complete.

LABEL maintainer="WSO2 Docker Maintainers <dev@wso2.org>" \
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.2.0.4"
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.2.0.6"

# set Docker image build arguments
# build arguments for user/group configurations
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/centos/apim-analytics/dashboard/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ RUN echo Verifying install ... \
&& echo Complete.

LABEL maintainer="WSO2 Docker Maintainers <dev@wso2.org>" \
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.2.0.4"
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.2.0.6"

# set Docker image build arguments
# build arguments for user/group configurations
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/centos/apim-analytics/worker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ RUN echo Verifying install ... \
&& echo Complete.

LABEL maintainer="WSO2 Docker Maintainers <dev@wso2.org>" \
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.2.0.4"
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.2.0.6"

# set Docker image build arguments
# build arguments for user/group configurations
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/centos/apim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ RUN echo Verifying install ... \
&& echo Complete.

LABEL maintainer="WSO2 Docker Maintainers <dev@wso2.org>" \
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.2.0.4"
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.2.0.6"
# set Docker image build arguments
# build arguments for user/group configurations
ARG USER=wso2carbon
Expand Down
9 changes: 8 additions & 1 deletion dockerfiles/ubuntu/apim-analytics/dashboard/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ RUN echo Verifying install ... \
&& echo Complete.

LABEL maintainer="WSO2 Docker Maintainers <dev@wso2.org>" \
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.2.0.4"
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.2.0.6"

# set Docker image build arguments
# build arguments for user/group configurations
Expand Down Expand Up @@ -116,6 +116,13 @@ RUN \
unzip \
wget \
&& rm -rf /var/lib/apt/lists/*

# update existing packages
RUN \
DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt-get update \
&& apt-get upgrade -y \
&& rm -rf /var/lib/apt/lists/*

# add the WSO2 product distribution to user's home directory
RUN \
wget -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \
Expand Down
9 changes: 8 additions & 1 deletion dockerfiles/ubuntu/apim-analytics/worker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ RUN echo Verifying install ... \
&& echo Complete.

LABEL maintainer="WSO2 Docker Maintainers <dev@wso2.org>" \
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.2.0.4"
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.2.0.6"

# set Docker image build arguments
# build arguments for user/group configurations
Expand Down Expand Up @@ -116,6 +116,13 @@ RUN \
unzip \
wget \
&& rm -rf /var/lib/apt/lists/*

# update existing packages
RUN \
DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt-get update \
&& apt-get upgrade -y \
&& rm -rf /var/lib/apt/lists/*

# add the WSO2 product distribution to user's home directory
RUN \
wget -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \
Expand Down
9 changes: 8 additions & 1 deletion dockerfiles/ubuntu/apim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ RUN echo Verifying install ... \
&& echo Complete.

LABEL maintainer="WSO2 Docker Maintainers <dev@wso2.org>" \
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.2.0.4"
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.2.0.6"

# set Docker image build arguments
# build arguments for user/group configurations
Expand Down Expand Up @@ -117,6 +117,13 @@ RUN \
unzip \
wget \
&& rm -rf /var/lib/apt/lists/*

# update existing packages
RUN \
DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt-get update \
&& apt-get upgrade -y \
&& rm -rf /var/lib/apt/lists/*

# add the WSO2 product distribution to user's home directory
RUN \
wget -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \
Expand Down