Revision bcf692d7750fe7e3391eecf9487285c591199b1d authored by Brandon Philips on 13 December 2013, 20:44:24 UTC, committed by Brandon Philips on 13 December 2013, 20:44:24 UTC
1 parent 7e5aa31
Raw File
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