Commit 8e562a5a authored by Juan Batiz-Benet's avatar Juan Batiz-Benet

Dockerfile: COPY -> ADD

```
2015/01/07 21:57:16 COPY has been deprecated. Please use ADD instead
```

Thanks @inconshreveable
parent 8c6dc4f5
FROM golang:1.3
MAINTAINER Brian Tiger Chow <btc@perfmode.com>
COPY . /go/src/github.com/jbenet/go-ipfs
ADD . /go/src/github.com/jbenet/go-ipfs
RUN cd /go/src/github.com/jbenet/go-ipfs/cmd/ipfs && go install
EXPOSE 4001 5001 4002/udp
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment