Initial version Dockerfile.
authorpataquets <amontero@tinet.org>
Thu, 20 Apr 2017 17:01:25 +0000 (19:01 +0200)
committerpataquets <amontero@tinet.org>
Thu, 20 Apr 2017 17:01:25 +0000 (19:01 +0200)
Dockerfile [new file with mode: 0644]

diff --git a/Dockerfile b/Dockerfile
new file mode 100644 (file)
index 0000000..7d5bbe6
--- /dev/null
@@ -0,0 +1,16 @@
+FROM gcc
+
+ADD . /usr/src/statsd-tg/
+WORKDIR /usr/src/statsd-tg/
+
+RUN \
+  aclocal && \
+  autoheader && \
+  automake --add-missing --copy && \
+  autoconf && \
+  ./configure && \
+  make && \
+  make install
+
+ENTRYPOINT [ "statsd-tg" ]
+CMD [ "-h" ]