mirror of
https://github.com/luzifer-docker/teamspeak3.git
synced 2024-11-09 12:30:01 +00:00
lint: Fix DL3006, SC2086, DL3009, DL3020 (hadolint)
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
ab5c172372
commit
5f8dea05e5
1 changed files with 5 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
FROM debian
|
||||
FROM debian:stretch
|
||||
|
||||
LABEL maintainer Knut Ahlers <knut@ahlers.me>
|
||||
|
||||
|
@ -10,14 +10,15 @@ RUN set -ex \
|
|||
&& apt-get update \
|
||||
&& apt-get install -y curl bzip2 ca-certificates --no-install-recommends \
|
||||
&& curl -sSfLo teamspeak3-server_linux-amd64.tar.bz2 \
|
||||
http://dl.4players.de/ts/releases/${TEAMSPEAK_VERSION}/teamspeak3-server_linux_amd64-${TEAMSPEAK_VERSION}.tar.bz2 \
|
||||
"http://dl.4players.de/ts/releases/${TEAMSPEAK_VERSION}/teamspeak3-server_linux_amd64-${TEAMSPEAK_VERSION}.tar.bz2" \
|
||||
&& echo "${TEAMSPEAK_SHA256} *teamspeak3-server_linux-amd64.tar.bz2" | sha256sum -c - \
|
||||
&& tar -C /opt -xjf teamspeak3-server_linux-amd64.tar.bz2 \
|
||||
&& rm teamspeak3-server_linux-amd64.tar.bz2 \
|
||||
&& apt-get purge -y curl bzip2 && apt-get autoremove -y \
|
||||
&& rm -r /var/lib/apt/lists/*
|
||||
&& apt-get clean \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
ADD docker-ts3.sh /opt/docker-ts3.sh
|
||||
COPY docker-ts3.sh /opt/docker-ts3.sh
|
||||
|
||||
# Inject a Volume for any TS3-Data that needs to be persisted or to be accessible from the host. (e.g. for Backups)
|
||||
VOLUME ["/teamspeak3"]
|
||||
|
|
Loading…
Reference in a new issue