-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add snippet to download necessary locale packages
- Loading branch information
1 parent
b82d774
commit 8dcd520
Showing
3 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,9 +17,15 @@ | |
# ------------------------------------------------------------------------ | ||
|
||
# Set base Docker image to Rocky Linux Docker image. | ||
FROM rockylinux:7 | ||
FROM rockylinux:9.3 | ||
LABEL maintainer="WSO2 Docker Maintainers <[email protected]>" \ | ||
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.8.0.10" | ||
|
||
# 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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,12 @@ | |
FROM rockylinux:9.3 | ||
LABEL maintainer="WSO2 Docker Maintainers <[email protected]>" \ | ||
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.8.0.10" | ||
|
||
# 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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,12 @@ | |
FROM rockylinux:9.3 | ||
LABEL maintainer="WSO2 Docker Maintainers <[email protected]>" \ | ||
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.8.0.10" | ||
|
||
# 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. | ||
|