Skip to content
Blake Stoddard edited this page Jun 1, 2017 · 2 revisions

Below is an example Dockfile to use with Docker (http://docs.docker.io/)

FROM ruby:2.3.0-onbuild
RUN mkdir data
EXPOSE 9292

ENTRYPOINT ["rackup", "--host", "0.0.0.0"]