Skip to content

Commit

Permalink
Merge pull request #524 from npamudika/3.1.x
Browse files Browse the repository at this point in the history
Add lang install to docker files
  • Loading branch information
npamudika authored Sep 27, 2024
2 parents 33b30c5 + 67abd81 commit 611f5d9
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
7 changes: 6 additions & 1 deletion dockerfiles/rocky/apim-analytics/dashboard/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
# set base Docker image to CentOS Docker image
FROM rockylinux:9.3

# Install necessary locale packages
RUN yum install -y glibc-langpack-en && \
yum install -y langpacks-en glibc-locale-source && \
localedef -c -f UTF-8 -i en_US en_US.UTF-8

ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'

# install JDK Dependencies
Expand Down Expand Up @@ -65,7 +70,7 @@ RUN echo Verifying install ... \
&& echo Complete.

LABEL maintainer="WSO2 Docker Maintainers <[email protected]>" \
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.1.0.8"
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.1.0.10"

# set Docker image build arguments
# build arguments for user/group configurations
Expand Down
7 changes: 6 additions & 1 deletion dockerfiles/rocky/apim-analytics/worker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
# set base Docker image to Rocky Linux
FROM rockylinux:9.3

# Install necessary locale packages
RUN yum install -y glibc-langpack-en && \
yum install -y langpacks-en glibc-locale-source && \
localedef -c -f UTF-8 -i en_US en_US.UTF-8

ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'

# install JDK Dependencies
Expand Down Expand Up @@ -65,7 +70,7 @@ RUN echo Verifying install ... \
&& echo Complete.

LABEL maintainer="WSO2 Docker Maintainers <[email protected]>" \
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.1.0.8"
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.1.0.10"

# set Docker image build arguments
# build arguments for user/group configurations
Expand Down
7 changes: 6 additions & 1 deletion dockerfiles/rocky/apim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
# set base Docker image to Rocky Linux
FROM rockylinux:9.3

# Install necessary locale packages
RUN yum install -y glibc-langpack-en && \
yum install -y langpacks-en glibc-locale-source && \
localedef -c -f UTF-8 -i en_US en_US.UTF-8

ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'

# install JDK Dependencies
Expand Down Expand Up @@ -65,7 +70,7 @@ RUN echo Verifying install ... \
&& echo Complete.

LABEL maintainer="WSO2 Docker Maintainers <[email protected]>" \
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.1.0.8"
com.wso2.docker.source="https://github.com/wso2/docker-apim/releases/tag/v3.1.0.10"
# set Docker image build arguments
# build arguments for user/group configurations
ARG USER=wso2carbon
Expand Down

0 comments on commit 611f5d9

Please sign in to comment.