https://github.com/coreos/etcd
Raw File
Tip revision: 5edaee79e67c27135b3d936e368c4b1261f22918 authored by Xiang Li on 06 December 2013, 04:33:56 UTC
Merge pull request #363 from xiangli-cmu/fix_consistent_redirection
Tip revision: 5edaee7
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"]
back to top