projects
/
statsd-tg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fb0ff4b
)
Initial version Dockerfile.
author
pataquets
<amontero@tinet.org>
Thu, 20 Apr 2017 17:01:25 +0000
(19:01 +0200)
committer
pataquets
<amontero@tinet.org>
Thu, 20 Apr 2017 17:01:25 +0000
(19:01 +0200)
Dockerfile
[new file with mode: 0644]
patch
|
blob
diff --git a/Dockerfile
b/Dockerfile
new file mode 100644
(file)
index 0000000..
7d5bbe6
--- /dev/null
+++ b/
Dockerfile
@@ -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" ]