renehernandez/data_structures_101

View on GitHub
Dockerfile

Summary

Maintainability
Test Coverage
FROM ruby:2.5

RUN mkdir /datastructures

WORKDIR /datastructures

COPY . .

RUN bundle install

CMD ["rspec"]