1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-30 18:51:24 +00:00
dockerfiles/hans/arm/Dockerfile

23 lines
517 B
Docker
Raw Normal View History

2016-10-28 17:05:25 +00:00
#
# Dockerfile for hans-arm
#
FROM easypi/alpine-arm
MAINTAINER EasyPi Software Foundation
RUN set -xe \
&& apk add --no-cache build-base curl libstdc++ linux-headers tar \
&& mkdir hans \
&& cd hans \
2016-11-23 15:19:44 +00:00
&& curl -sSL https://github.com/friedrich/hans/archive/v1.0.tar.gz | tar xz --strip 1 \
2016-10-28 17:05:25 +00:00
&& make \
&& mv hans /usr/bin/hans \
&& cd .. \
&& rm -rf hans \
&& apk del build-base curl linux-headers tar
ENV SERVER 1.2.3.4
ENV PASSWORD password
CMD hans -f -c $SERVER -p $PASSWORD