mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 00:01:09 +00:00
e5bed7ac38
git-subtree-dir: bridges git-subtree-split: 89a76998f93c8219e9b1f785dcce73d4891e7068
19 lines
565 B
Docker
19 lines
565 B
Docker
FROM ruby:alpine
|
|
|
|
RUN apk add --no-cache git
|
|
|
|
ENV APP_HOME /app
|
|
ENV RACK_ENV production
|
|
RUN mkdir $APP_HOME
|
|
WORKDIR $APP_HOME
|
|
|
|
# The latest master has some changes in how the application is run. We don't
|
|
# want to update just yet so we're pinning to an old commit.
|
|
RUN git clone https://github.com/ananace/ruby-grafana-matrix.git $APP_HOME
|
|
RUN git checkout 0d662b29633d16176291d11a2d85ba5107cf7de3
|
|
RUN bundle install --without development
|
|
|
|
RUN mkdir /config && touch /config/config.yml && ln -s /config/config.yml ./config.yml
|
|
|
|
CMD ["bundle", "exec", "bin/server"]
|