You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:developmentdogem'pry','>= 1.0.0.pre1'gem'dotenv','~> 3.1'end
The text was updated successfully, but these errors were encountered:
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 theadded reliability from a
Gemfile.lock
.This could be the Gemfile:
The text was updated successfully, but these errors were encountered: