mirror of
https://github.com/placeholder-soft/prodigyapi.git
synced 2026-04-28 20:04:59 +08:00
10 lines
271 B
Docker
10 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"]
|