1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-28 09:08:50 +02:00
dockerfiles/hans/Dockerfile

23 lines
503 B
Docker
Raw Normal View History

2016-10-28 16:24:03 +02:00
#
# Dockerfile for hans
#
FROM alpine
2017-05-08 01:05:07 +02:00
MAINTAINER kev <noreply@easypi.pro>
2016-10-28 16:24:03 +02:00
RUN set -xe \
&& apk add --no-cache build-base curl libstdc++ linux-headers tar \
&& mkdir hans \
&& cd hans \
2016-11-23 17:19:44 +02:00
&& curl -sSL https://github.com/friedrich/hans/archive/v1.0.tar.gz | tar xz --strip 1 \
2016-10-28 16:24:03 +02:00
&& make \
&& mv hans /usr/bin/hans \
&& cd .. \
&& rm -rf hans \
&& apk del build-base curl linux-headers tar
ENV NETWORK 10.1.2.0
ENV PASSWORD password
CMD hans -f -s $NETWORK -p $PASSWORD