feature: show pools apr

This commit is contained in:
Claudio Ramos
2021-08-15 02:21:39 -03:00
parent c1129b9953
commit 9e96a3664b
17 changed files with 996 additions and 145 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM ruby:2.7.4
RUN apt update && apt install -y graphviz nodejs npm
RUN npm i -g yarn
WORKDIR /usr/src/app
USER 1000:1000
COPY Gemfile Gemfile.lock /usr/src/app/
RUN bundle install
COPY . /usr/src/app
CMD bundle exec rails s -b 0.0.0.0