Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use a Gemfile in Dockerfile #9

Open
harigopal opened this issue Mar 13, 2024 · 0 comments
Open

Use a Gemfile in Dockerfile #9

harigopal opened this issue Mar 13, 2024 · 0 comments

Comments

@harigopal
Copy link
Member

I don't see a reason for why we're manually installing gems inside the Dockerfile. Shouldn't we be using a Gemfile instead and get the
added reliability from a Gemfile.lock.

This could be the Gemfile:

source 'https://rubygems.org'

ruby '3.2.3'

# A Ruby library for declaring, composing and executing GraphQL queries.
gem 'graphql-client', '~> 0.20.0'

# A Ruby gem for the OpenAI API.
gem 'ruby-openai', '~> 6.3'

group :development do
  gem 'pry', '>= 1.0.0.pre1'
  gem 'dotenv', '~> 3.1'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant