1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/kcptun/Dockerfile

19 lines
443 B
Docker
Raw Normal View History

2016-08-10 09:25:53 +02:00
#
# Dockerfile for kcptun
#
FROM alpine
2017-05-08 01:05:07 +02:00
MAINTAINER kev <noreply@easypi.pro>
2016-08-10 09:25:53 +02:00
2017-12-09 13:15:07 +02:00
ENV KCPTUN_VERSION 20171201
2016-08-10 09:25:53 +02:00
ENV KCPTUN_FILE kcptun-linux-amd64-${KCPTUN_VERSION}.tar.gz
ENV KCPTUN_URL https://github.com/xtaci/kcptun/releases/download/v${KCPTUN_VERSION}/${KCPTUN_FILE}
RUN set -xe \
&& apk add --no-cache curl \
&& curl -sSL ${KCPTUN_URL} | tar xz -C /usr/local/bin \
&& apk del curl
ENTRYPOINT ["server_linux_amd64"]
CMD ["--help"]