iron-io/docs

Missing correct Dockerfile in IronWorker Getting Started

Closed this issue · 1 comments

I'm working my way through the IronWorker getting started guide. The article here:
http://dev.iron.io/worker/getting_started/

Links to the correct Ruby Dockerfile, but doesn't display the correct code in the article itself:
ENTRYPOINT ["ruby", "helloworld.rb"]

Should be:

FROM iron/ruby

WORKDIR /app
ADD . /app

ENTRYPOINT ["ruby", "hello.rb"]

Small nitpick but it threw me off a bit when I was working my way through it.

Thanks!

Brian! I made a fix to this and will push soon. Thanks for the heads up!! d798849