fix(Dockerfile) must specify both ports on one line

License: MIT
Signed-off-by: Brian Tiger Chow <brian@perfmode.com>
This commit is contained in:
Brian Tiger Chow 2014-11-18 08:03:41 -08:00
parent 9374f90763
commit 458afe3da9

View File

@ -4,8 +4,7 @@ MAINTAINER Brian Tiger Chow <btc@perfmode.com>
COPY . /go/src/github.com/jbenet/go-ipfs
RUN cd /go/src/github.com/jbenet/go-ipfs/cmd/ipfs && go install
EXPOSE 5001 # API
EXPOSE 4001 # SWARM
EXPOSE 4001 5001
ENTRYPOINT ["ipfs"]