Files
prodigyapi/Dockerfile
KaliArch d11eb1f13c add Dockerfile (#1124)
* add Dockerfile

add Dockerfile

* Update Dockerfile

Co-authored-by: Matthew Peveler <matt.peveler@gmail.com>
2020-05-11 16:25:54 +03:00

22 lines
325 B
Docker

FROM ruby:2.5-alpine
RUN apk --no-cache add \
g++ \
gcc \
libc-dev \
make \
nodejs \
&& gem install bundler
WORKDIR /srv/slate
COPY . /srv/slate
RUN bundle install
VOLUME /srv/slate/source
EXPOSE 4567
CMD ["bundle", "exec", "middleman", "server", "--watcher-force-polling"]