FROM ruby:2.4.0
RUN apt update -qy && apt install net-tools -yq
RUN mkdir -p /notify-actuator/
ADD . /notify-actuator/
WORKDIR /notify-actuator/
RUN bundle install
CMD [ "bundle", "exec", "rackup", "-p", "9293", "--host", "0.0.0.0" ]
