The little things that count.
parent
a96911b651
commit
3ec1a48efa
12
Dockerfile
12
Dockerfile
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue