mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
8 lines
191 B
Docker
8 lines
191 B
Docker
FROM iron/go:dev
|
|
|
|
ADD . /go/src/github.com/treeder/hello
|
|
WORKDIR /go/src/github.com/treeder/hello
|
|
RUN go build github.com/treeder/hello
|
|
|
|
ENTRYPOINT ["/go/src/github.com/treeder/hello/hello"]
|