FROM cm2network/steamcmd:latest USER root ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y locales #RUN sed -i -e 's/# ru_RU.UTF-8 UTF-8/ru_RU.UTF-8 UTF-8/' /etc/locale.gen \ # && locale-gen RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen \ && locale-gen ENV LANG en_US.UTF-8 #ENV LANG ru_RU.UTF-8 #ENV LANGUAGE en_US:ru #ENV LC_LANG en_US.UTF-8 #ENV LC_ALL en_US.UTF-8 ENV TZ Europe/Moscow RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone USER steam