mirror of
https://github.com/luzifer-docker/teeworlds.git
synced 2024-11-08 12:40:02 +00:00
20 lines
398 B
Docker
20 lines
398 B
Docker
FROM debian
|
|
|
|
MAINTAINER Knut Ahlers <knut@luzifer.io>
|
|
|
|
ENV VERSION 0.6.3
|
|
|
|
WORKDIR /opt
|
|
|
|
ADD start.sh /opt/start.sh
|
|
ADD config.dist.cfg /opt/config.dist.cfg
|
|
|
|
ADD https://downloads.teeworlds.com/teeworlds-${VERSION}-linux_x86_64.tar.gz /opt/teeworlds.tar.gz
|
|
RUN tar xzf teeworlds.tar.gz \
|
|
&& mv /opt/teeworlds*/ /opt/teeworlds
|
|
|
|
VOLUME /data
|
|
EXPOSE 8303/udp
|
|
|
|
ENTRYPOINT ["/opt/start.sh"]
|
|
CMD ["--"]
|