The little things that count.
parent
a96911b651
commit
3ec1a48efa
10
Dockerfile
10
Dockerfile
|
@ -1,14 +1,16 @@
|
|||
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
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# Install dependencies
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --no-install-recommends \
|
||||
net-tools && apt-get clean && \
|
||||
apt-get install -y \
|
||||
--no-install-recommends net-tools && \
|
||||
apt-get clean && \
|
||||
dpkg --clear-avail && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Create the volume directories
|
||||
|
@ -16,7 +18,7 @@ RUN apt-get update && \
|
|||
RUN mkdir -p /steamcmd/starbound
|
||||
|
||||
# Add the steamcmd installation script
|
||||
ADD install.txt /app/install.txt
|
||||
ADD install.cmd /install.cmd
|
||||
|
||||
# Copy the startup script
|
||||
ADD start.sh /app/start.sh
|
||||
|
|
Loading…
Reference in New Issue