1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 13:58:42 +00:00
dockerfiles/delegated/Dockerfile

27 lines
628 B
Docker
Raw Normal View History

2016-04-10 16:34:54 +00:00
#
# Dockerfile for delegated
#
FROM debian
2017-05-07 23:05:07 +00:00
MAINTAINER kev <noreply@easypi.pro>
2016-04-10 16:34:54 +00:00
ENV DG_VERSION 9_9_13
ENV DG_FILE linux2.6-dg${DG_VERSION}.tar.gz
ENV DG_DIR dg${DG_VERSION}
ENV DG_URL http://delegate.hpcc.jp/anonftp/DeleGate/bin/linux/latest/${DG_FILE}
RUN set -xe \
&& apt-get update \
&& apt-get install -y wget \
&& wget ${DG_URL} -O ${DG_FILE} \
&& tar xzf ${DG_FILE} \
&& cp ${DG_DIR}/DGROOT/bin/${DG_DIR} /bin/delegated \
&& apt-get remove -y wget \
&& rm -rf ${DG_FILE} \
${DG_DIR} \
/var/lib/apt/lists/*
COPY delegated.conf /etc/
ENTRYPOINT ["/bin/delegated"]