mirror of
https://github.com/danbulant/api_docs
synced 2026-05-19 12:19:08 +00:00
9 lines
271 B
Docker
9 lines
271 B
Docker
FROM ruby:onbuild
|
|
MAINTAINER Adrian Perez <adrian@adrianperez.org>
|
|
VOLUME /usr/src/app/source
|
|
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"]
|