The little things that count.

master
Ezekiel Grave 2019-06-20 01:06:59 +00:00
parent a96911b651
commit 3ec1a48efa
2 changed files with 7 additions and 5 deletions

View File

@ -1,22 +1,24 @@
FROM didstopia/base:steamcmd-ubuntu-20.04 FROM didstopia/base:steamcmd-ubuntu-20.04
LABEL maintainer="Didstopia <support@didstopia.com>" LABEL maintainer="Ezekiel Grave <gitea@reg.ici.de.com>"
# Fixes apt-get warnings # Fixes apt-get warnings
ARG DEBIAN_FRONTEND=noninteractive ARG DEBIAN_FRONTEND=noninteractive
# Install dependencies # Install dependencies
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y --no-install-recommends \ apt-get install -y \
net-tools && apt-get clean && \ --no-install-recommends net-tools && \
rm -rf /var/lib/apt/lists/* apt-get clean && \
dpkg --clear-avail && \
rm -rf /var/lib/apt/lists/*
# Create the volume directories # Create the volume directories
# Create and set the steamcmd folder as a volume # Create and set the steamcmd folder as a volume
RUN mkdir -p /steamcmd/starbound RUN mkdir -p /steamcmd/starbound
# Add the steamcmd installation script # Add the steamcmd installation script
ADD install.txt /app/install.txt ADD install.cmd /install.cmd
# Copy the startup script # Copy the startup script
ADD start.sh /app/start.sh ADD start.sh /app/start.sh

0
install.txt → install.cmd Executable file → Normal file
View File