Codebase list httping / upstream/2.5+git20181030.db0134a Dockerfile
upstream/2.5+git20181030.db0134a

Tree @upstream/2.5+git20181030.db0134a (Download .tar.gz)

Dockerfile @upstream/2.5+git20181030.db0134a

af5ca31
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from debian:stretch
MAINTAINER ugurarpaci@gmail.com
RUN apt-get update
RUN apt-get install gcc make cmake gettext -y
ADD . /opt/httping
WORKDIR /opt/httping
RUN make
RUN mv httping /usr/local/bin && chmod +x /usr/local/bin/httping
ENTRYPOINT ["httping"]