add very simple dockerfile for example server

This commit is contained in:
Lucas Clemente
2016-04-29 12:00:22 +02:00
parent 74f7576391
commit d608a232e6

9
example/Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM scratch
VOLUME /certs
VOLUME /www
EXPOSE 6121
ADD main /main
CMD ["/main", "-bind=0.0.0.0", "-certpath=/certs/", "-www=/www"]