Skip to content

Commit

Permalink
T-70: Dockerfile for Ruby 3.0 (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
marian13 committed Feb 7, 2021
1 parent 07ef477 commit 2751795
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ Basic Temperature follows the [Semantic Versioning](https://semver.org/) standar

Bug reports and pull requests are welcome on GitHub at https://github.com/marian13/basic_temperature.

## Development
## Development on the local machine

* Check specs: `bundle exec rspec`.

Expand All @@ -235,7 +235,7 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/marian

* Interactive shell inside container: `docker run -it basic_temperature_2.3:latest bash`.

* 2.3 can be replaced by 2.4, 2.5, 2.6 and 2.7.
* 2.3 can be replaced by 2.4, 2.5, 2.6, 2.7 and 3.0.

## License

Expand Down
7 changes: 7 additions & 0 deletions docker/Dockerfile-3.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM ruby:3.0

RUN mkdir -p /gem
WORKDIR /gem

COPY . /gem
RUN bundle install

0 comments on commit 2751795

Please sign in to comment.