File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,8 +25,11 @@ COPY --from=add-apt-repositories /etc/apt/trusted.gpg /etc/apt/trusted.gpg
2525COPY --from=add-apt-repositories /etc/apt/sources.list /etc/apt/sources.list
2626
2727RUN apt-get update \
28- && DEBIAN_FRONTEND=noninteractive apt-get install -y acl sudo \
28+ && DEBIAN_FRONTEND=noninteractive apt-get install -y acl sudo locales \
2929 postgresql-${PG_VERSION} postgresql-client-${PG_VERSION} postgresql-contrib-${PG_VERSION} \
30+ && locale-gen en_US.UTF-8 \
31+ && update-locale LANG=en_US.UTF-8 LC_MESSAGES=POSIX \
32+ && DEBIAN_FRONTEND=noninteractive dpkg-reconfigure locales \
3033 && ln -sf ${PG_DATADIR}/postgresql.conf /etc/postgresql/${PG_VERSION}/main/postgresql.conf \
3134 && ln -sf ${PG_DATADIR}/pg_hba.conf /etc/postgresql/${PG_VERSION}/main/pg_hba.conf \
3235 && ln -sf ${PG_DATADIR}/pg_ident.conf /etc/postgresql/${PG_VERSION}/main/pg_ident.conf \
You can’t perform that action at this time.
0 commit comments