mirror of
https://ceregatti.org/git/daniel/dayzdockerserver.git
synced 2025-05-06 22:31:18 +00:00
Add locales so steamcmd doesn't complain.
This commit is contained in:
parent
12e6306833
commit
a97d76d46f
1 changed files with 7 additions and 0 deletions
|
@ -14,10 +14,17 @@ RUN sed -i /etc/apt/sources.list.d/debian.sources -e 's/Components: main/Compone
|
||||||
|
|
||||||
# Install only the necessary packages
|
# Install only the necessary packages
|
||||||
RUN apt-get update && apt-get -y upgrade && apt-get -y install --no-install-recommends \
|
RUN apt-get update && apt-get -y upgrade && apt-get -y install --no-install-recommends \
|
||||||
|
locales \
|
||||||
nano \
|
nano \
|
||||||
procps \
|
procps \
|
||||||
steamcmd
|
steamcmd
|
||||||
|
|
||||||
|
# Set the locale
|
||||||
|
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen
|
||||||
|
ENV LANG en_US.UTF-8
|
||||||
|
ENV LANGUAGE en_US:en
|
||||||
|
ENV LC_ALL en_US.UTF-8
|
||||||
|
|
||||||
# Add steamcmd to the PATH
|
# Add steamcmd to the PATH
|
||||||
ENV PATH="/usr/games:${PATH}"
|
ENV PATH="/usr/games:${PATH}"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue