Skip to content
This repository was archived by the owner on Nov 7, 2022. It is now read-only.

Commit d7eab2b

Browse files
committed
Initial version
Minor changes to Dockerfile.
1 parent 09c342c commit d7eab2b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

12/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ RUN set -eux; \
4444
gosu --version; \
4545
gosu nobody true
4646

47-
# make the "en_US.UTF-8" locale so postgres will be utf-8 enabled by default
47+
# make the "en_GB.UTF-8" locale so postgres will be utf-8 enabled by default
4848
RUN set -eux; \
4949
if [ -f /etc/dpkg/dpkg.cfg.d/docker ]; then \
5050
# if this file exists, we're likely in "debian:xxx-slim", and locales are thus being excluded so we need to remove that exclusion (since we need locales)
@@ -53,8 +53,8 @@ RUN set -eux; \
5353
! grep -q '/usr/share/locale' /etc/dpkg/dpkg.cfg.d/docker; \
5454
fi; \
5555
apt-get update; apt-get install -y --no-install-recommends locales; rm -rf /var/lib/apt/lists/*; \
56-
localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
57-
ENV LANG en_US.utf8
56+
localedef -i en_GB -c -f UTF-8 -A /usr/share/locale/locale.alias en_GB.UTF-8
57+
ENV LANG en_GB.utf8
5858

5959
RUN set -eux; \
6060
apt-get update; \

VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
12.4

0 commit comments

Comments
 (0)