Files
pezkuwi-subxt/deployments/monitoring/GrafanaMatrix.Dockerfile
T
Branislav Kontur d2b7ee2575 Squashed 'bridges/' content from commit 062554430
git-subtree-dir: bridges
git-subtree-split: 0625544309ff299307f7e110f252f04eac383102
2022-12-01 22:32:52 +01:00

16 lines
379 B
Docker

FROM ruby:alpine3.13
RUN apk add --no-cache git
ENV APP_HOME /app
ENV RACK_ENV production
RUN mkdir $APP_HOME
WORKDIR $APP_HOME
RUN git clone https://github.com/ananace/ruby-grafana-matrix.git $APP_HOME
RUN bundle install --without development
RUN mkdir /config && touch /config/config.yml && ln -s /config/config.yml ./config.yml
CMD ["bundle", "exec", "rackup", "-p4567"]