snowplow/snowplow-ruby-tracker

View on GitHub
Dockerfile

Summary

Maintainability
Test Coverage
FROM ruby:2.6

WORKDIR /code

COPY ./ ./
RUN gem install bundler
RUN bundle install

CMD ["rspec"]