Skip to content

Commit

Permalink
Merge pull request #185 from shocklateboy92/fixes/us-locale
Browse files Browse the repository at this point in the history
Install the `locales` package in the steam image and generate en_US.UTF-8
  • Loading branch information
ABeltramo authored Aug 24, 2024
2 parents 015b054 + 9ee5f89 commit b3ac0cc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions images/base-app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,19 @@ ARG REQUIRED_PACKAGES="\
mesa-vulkan-drivers libgbm1 libgles2 libegl1 libgl1-mesa-dri \
libnvidia-egl-wayland1 libnvidia-egl-gbm1 \
fonts-noto-cjk \
locales \
"

RUN apt-get update -y && \
apt-get install -y --no-install-recommends \
$REQUIRED_PACKAGES && \
rm -rf /var/lib/apt/lists/*

# Some games with native Linux ports require en_US.UTF-8
# to be generated regardless of user locale settings
# see: https://github.com/games-on-whales/gow/pull/185
RUN locale-gen en_US.UTF-8

#################################
# GAMESCOPE
####
Expand Down

0 comments on commit b3ac0cc

Please sign in to comment.