https://github.com/etcd-io/etcd
Revision 0facc24016fbfd980eda11d36cac1a2fb5c25d99 authored by Brandon Philips on 06 October 2013, 18:39:49 UTC, committed by Brandon Philips on 06 October 2013, 18:39:49 UTC
2 parent s 5cc585a + baaaf24
Raw File
Tip revision: 0facc24016fbfd980eda11d36cac1a2fb5c25d99 authored by Brandon Philips on 06 October 2013, 18:39:49 UTC
Merge remote-tracking branch 'xiangli-cmu/newStore' into 0.2
Tip revision: 0facc24
Dockerfile
FROM ubuntu:12.04
RUN apt-get update
RUN apt-get install -y python-software-properties git
RUN add-apt-repository -y ppa:duh/golang
RUN apt-get update
RUN apt-get install -y golang
ADD . /opt/etcd
RUN cd /opt/etcd && ./build
EXPOSE 4001 7001
ENTRYPOINT ["/opt/etcd/etcd", "-c", "0.0.0.0:4001", "-s", "0.0.0.0:7001"]
back to top