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

Ensure the UTF-8 locales are set #8

Merged
merged 1 commit into from
Jul 30, 2018
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
3 changes: 3 additions & 0 deletions Dockerfile.latest
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Build the latest openSUSE Tumbleweed image
FROM opensuse/tumbleweed

# ensure the UTF-8 locales are set
ENV LC_ALL=en_US.UTF-8

# do not install the files marked as documentation (use "rpm --excludedocs")
RUN sed -i -e "s/^.*rpm.install.excludedocs.*/rpm.install.excludedocs = yes/" /etc/zypp/zypp.conf

Expand Down
3 changes: 3 additions & 0 deletions Dockerfile.sle12-sp3
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
# for running the libyui builds.
FROM opensuse:42.3

# ensure the UTF-8 locales are set
ENV LC_ALL=en_US.UTF-8

# do not install the files marked as documentation (use "rpm --excludedocs")
RUN sed -i -e "s/^.*rpm.install.excludedocs.*/rpm.install.excludedocs = yes/" /etc/zypp/zypp.conf

Expand Down
3 changes: 3 additions & 0 deletions Dockerfile.sle12-sp4
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
# for running the libyui builds.
FROM opensuse:42.3

# ensure the UTF-8 locales are set
ENV LC_ALL=en_US.UTF-8

# do not install the files marked as documentation (use "rpm --excludedocs")
RUN sed -i -e "s/^.*rpm.install.excludedocs.*/rpm.install.excludedocs = yes/" /etc/zypp/zypp.conf

Expand Down
3 changes: 3 additions & 0 deletions Dockerfile.sle15
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Build the latest openSUSE Tumbleweed image
FROM opensuse/leap:15.0

# ensure the UTF-8 locales are set
ENV LC_ALL=en_US.UTF-8

# do not install the files marked as documentation (use "rpm --excludedocs")
RUN sed -i -e "s/^.*rpm.install.excludedocs.*/rpm.install.excludedocs = yes/" /etc/zypp/zypp.conf

Expand Down