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

Add lang install to docker files #524

Merged
merged 2 commits into from
Sep 27, 2024
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
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 <dev@wso2.org>" \
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 <dev@wso2.org>" \
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 <dev@wso2.org>" \
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