1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-27 09:18:43 +00:00
dockerfiles/delegated/Dockerfile
2016-05-01 09:06:20 +08:00

27 lines
629 B
Docker

#
# Dockerfile for delegated
#
FROM debian
MAINTAINER kev <noreply@easypi.info>
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"]