mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 23:37:56 +00:00
d2b7ee2575
git-subtree-dir: bridges git-subtree-split: 0625544309ff299307f7e110f252f04eac383102
16 lines
379 B
Docker
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"]
|