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