Files
fn-serverless/examples/hello-ruby/Dockerfile
2016-10-13 20:24:06 -07:00

10 lines
126 B
Docker

FROM iron/ruby:dev
WORKDIR /worker
ADD Gemfile* /worker/
RUN bundle install
ADD . /worker/
ENTRYPOINT ["ruby", "hello.rb"]