Browse Source

Add tzdata package to SteamCMD installations and clean up environment variable syntax

main
Daniel Gibbs 5 days ago
parent
commit
5a4e939efd
  1. 6
      Dockerfile.ubuntu-1804
  2. 6
      Dockerfile.ubuntu-2004
  3. 6
      Dockerfile.ubuntu-2204
  4. 6
      Dockerfile.ubuntu-2404

6
Dockerfile.ubuntu-1804

@ -11,7 +11,7 @@ RUN echo "**** Install SteamCMD ****" \
&& echo steam steam/license note '' | debconf-set-selections \
&& dpkg --add-architecture i386 \
&& apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates locales lib32gcc1 libsdl2-2.0-0:i386 steamcmd \
&& apt-get install -y --no-install-recommends ca-certificates locales lib32gcc1 libsdl2-2.0-0:i386 tzdata steamcmd \
&& ln -s /usr/games/steamcmd /usr/bin/steamcmd \
&& apt-get -y autoremove \
&& apt-get -y clean \
@ -21,8 +21,8 @@ RUN echo "**** Install SteamCMD ****" \
# Add unicode support
RUN locale-gen en_US.UTF-8
ENV LANG 'en_US.UTF-8'
ENV LANGUAGE 'en_US:en'
ENV LANG=en_US.UTF-8
ENV LANGUAGE=en_US:en
ENTRYPOINT ["steamcmd"]
CMD ["+help", "+quit"]

6
Dockerfile.ubuntu-2004

@ -11,7 +11,7 @@ RUN echo "**** Install SteamCMD ****" \
&& echo steam steam/license note '' | debconf-set-selections \
&& dpkg --add-architecture i386 \
&& apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates locales lib32gcc1 libsdl2-2.0-0:i386 steamcmd \
&& apt-get install -y --no-install-recommends ca-certificates locales lib32gcc1 libsdl2-2.0-0:i386 tzdata steamcmd \
&& ln -s /usr/games/steamcmd /usr/bin/steamcmd \
&& apt-get -y autoremove \
&& apt-get -y clean \
@ -21,8 +21,8 @@ RUN echo "**** Install SteamCMD ****" \
# Add unicode support
RUN locale-gen en_US.UTF-8
ENV LANG 'en_US.UTF-8'
ENV LANGUAGE 'en_US:en'
ENV LANG=en_US.UTF-8
ENV LANGUAGE=en_US:en
ENTRYPOINT ["steamcmd"]
CMD ["+help", "+quit"]

6
Dockerfile.ubuntu-2204

@ -11,7 +11,7 @@ RUN echo "**** Install SteamCMD ****" \
&& echo steam steam/license note '' | debconf-set-selections \
&& dpkg --add-architecture i386 \
&& apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates locales lib32gcc-s1 libsdl2-2.0-0:i386 steamcmd \
&& apt-get install -y --no-install-recommends ca-certificates locales lib32gcc-s1 libsdl2-2.0-0:i386 tzdata steamcmd \
&& ln -s /usr/games/steamcmd /usr/bin/steamcmd \
&& apt-get -y autoremove \
&& apt-get -y clean \
@ -21,8 +21,8 @@ RUN echo "**** Install SteamCMD ****" \
# Add unicode support
RUN locale-gen en_US.UTF-8
ENV LANG 'en_US.UTF-8'
ENV LANGUAGE 'en_US:en'
ENV LANG=en_US.UTF-8
ENV LANGUAGE=en_US:en
ENTRYPOINT ["steamcmd"]
CMD ["+help", "+quit"]

6
Dockerfile.ubuntu-2404

@ -11,7 +11,7 @@ RUN echo "**** Install SteamCMD ****" \
&& echo steam steam/license note '' | debconf-set-selections \
&& dpkg --add-architecture i386 \
&& apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates locales lib32gcc-s1 libsdl2-2.0-0:i386 steamcmd \
&& apt-get install -y --no-install-recommends ca-certificates locales lib32gcc-s1 libsdl2-2.0-0:i386 tzdata steamcmd \
&& ln -s /usr/games/steamcmd /usr/bin/steamcmd \
&& apt-get -y autoremove \
&& apt-get -y clean \
@ -21,8 +21,8 @@ RUN echo "**** Install SteamCMD ****" \
# Add unicode support
RUN locale-gen en_US.UTF-8
ENV LANG 'en_US.UTF-8'
ENV LANGUAGE 'en_US:en'
ENV LANG=en_US.UTF-8
ENV LANGUAGE=en_US:en
ENTRYPOINT ["steamcmd"]
CMD ["+help", "+quit"]

Loading…
Cancel
Save