Files
Pterodactyl-Yolks/SteamCMD-Installer/Dockerfile
2022-06-30 21:20:45 -05:00

18 lines
661 B
Docker

FROM ubuntu
ENV DEBIAN_FRONTEND=noninteractive \
HOME=/home/container \
USER=container
WORKDIR ${HOME}
SHELL ["/bin/bash", "-c"]
RUN apt-get update && apt-get install -y --no-install-recommends \
curl iproute2 locales software-properties-common unzip && \
locale-gen --lang en_US.UTF-8 && \
add-apt-repository multiverse && \
dpkg --add-architecture i386 && \
apt-get update && apt-get upgrade -y && \
echo steam steam/question select "I AGREE" | debconf-set-selections && \
apt-get install lib32gcc-s1 steamcmd -y --no-install-recommends && \
ln -s /usr/games/steamcmd /bin/steamcmd && \
useradd ${USER} -d ${HOME}