api_docs/Dockerfile
Álex González 2618c77db0 Use base ruby image in Dockerfile & fix watcher
It seems that the watcher will not work without the
--force-polling option.
2015-11-17 13:53:34 +01:00

6 lines
144 B
Docker

FROM ruby:2.2.3-onbuild
RUN ln -s /usr/src/app /app # Deprecated
EXPOSE 4567
CMD ["bundle", "exec", "middleman", "server", "--force-polling"]