Codebase list httping / a836239f-a6ff-45f0-ba82-6fd53b7771b0/upstream Dockerfile
a836239f-a6ff-45f0-ba82-6fd53b7771b0/upstream

Tree @a836239f-a6ff-45f0-ba82-6fd53b7771b0/upstream (Download .tar.gz)

Dockerfile @a836239f-a6ff-45f0-ba82-6fd53b7771b0/upstream

558af47
 
 
 
 
 
 
 
 
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"]