Files
pezkuwi-subxt/bridges/deployments/monitoring/GrafanaMatrix.Dockerfile
T
Branislav Kontur fcc1574aac Merge commit 'd2b7ee2575c5132ef050e2523955382e1fae00ec' as 'bridges'
(git subtree add --prefix=bridges bridges master --squash)
2022-12-01 23:13:25 +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"]