mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
9 lines
133 B
Docker
9 lines
133 B
Docker
FROM iron/ruby:dev
|
|
|
|
WORKDIR /function
|
|
ADD Gemfile /function/
|
|
RUN bundle install
|
|
|
|
ADD . /function/
|
|
|
|
ENTRYPOINT ["ruby", "function.rb"] |