Commit 75f61557 authored by Adrian Perez's avatar Adrian Perez

fix(docker): new middleman requires JS runtime

parent f90e6b07
...@@ -2,4 +2,8 @@ FROM ruby:onbuild ...@@ -2,4 +2,8 @@ FROM ruby:onbuild
MAINTAINER Adrian Perez <adrian@adrianperez.org> MAINTAINER Adrian Perez <adrian@adrianperez.org>
VOLUME /usr/src/app/source VOLUME /usr/src/app/source
EXPOSE 4567 EXPOSE 4567
RUN apt-get update && apt-get install -y nodejs \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
CMD ["bundle", "exec", "middleman", "server", "--force-polling"] CMD ["bundle", "exec", "middleman", "server", "--force-polling"]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment