mirror of
https://github.com/luzifer-docker/teamspeak3.git
synced 2024-11-09 20:40:00 +00:00
Teamspeak Server 3.8.0
This commit is contained in:
parent
2f4a9d8bea
commit
dfbb0b7ff0
1 changed files with 3 additions and 3 deletions
|
@ -3,14 +3,14 @@ FROM debian:stretch
|
||||||
LABEL maintainer Knut Ahlers <knut@ahlers.me>
|
LABEL maintainer Knut Ahlers <knut@ahlers.me>
|
||||||
|
|
||||||
# Get the SHA256 from https://www.teamspeak.com/en/downloads#server
|
# Get the SHA256 from https://www.teamspeak.com/en/downloads#server
|
||||||
ENV TEAMSPEAK_VERSION=3.7.1 \
|
ENV TEAMSPEAK_VERSION=3.8.0 \
|
||||||
TEAMSPEAK_SHA256=6787d4c9fd6f72d1386872a61f38f932a8ee745046b1497168286ffd0311c0f0
|
TEAMSPEAK_SHA256=6122ec5949cf53d91b7b8f76c5e7ea9921fd1ec07dce3cf715d8587e31c6f5af
|
||||||
|
|
||||||
SHELL ["/bin/bash", "-exo", "pipefail", "-c"]
|
SHELL ["/bin/bash", "-exo", "pipefail", "-c"]
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y curl bzip2 ca-certificates --no-install-recommends \
|
&& apt-get install -y curl bzip2 ca-certificates --no-install-recommends \
|
||||||
&& curl -sSfLo teamspeak3-server_linux-amd64.tar.bz2 \
|
&& curl -sSfLo teamspeak3-server_linux-amd64.tar.bz2 \
|
||||||
"http://dl.4players.de/ts/releases/${TEAMSPEAK_VERSION}/teamspeak3-server_linux_amd64-${TEAMSPEAK_VERSION}.tar.bz2" \
|
"https://files.teamspeak-services.com/releases/server/${TEAMSPEAK_VERSION}/teamspeak3-server_linux_amd64-${TEAMSPEAK_VERSION}.tar.bz2" \
|
||||||
&& echo "${TEAMSPEAK_SHA256} *teamspeak3-server_linux-amd64.tar.bz2" | sha256sum -c - \
|
&& echo "${TEAMSPEAK_SHA256} *teamspeak3-server_linux-amd64.tar.bz2" | sha256sum -c - \
|
||||||
&& tar -C /opt -xjf teamspeak3-server_linux-amd64.tar.bz2 \
|
&& tar -C /opt -xjf teamspeak3-server_linux-amd64.tar.bz2 \
|
||||||
&& rm teamspeak3-server_linux-amd64.tar.bz2 \
|
&& rm teamspeak3-server_linux-amd64.tar.bz2 \
|
||||||
|
|
Loading…
Reference in a new issue