lmkadesign.blogg.se

Gem install jekyll could not find valid gem
Gem install jekyll could not find valid gem










gem install jekyll could not find valid gem

Setup Docker Compose Create docker-compose.yml It needs to match the version in Gemfile.lock, A specific version can be set like RUN gem install bundler -v 2.0.2.

  • RUN gem install bundler: Install the bundler gem.
  • : Copy the files to the working directory.
  • WORKDIR /project: Set the working directory to project folder.
  • RUN mkdir /project: Create a folder called project to host the codebase.
  • RUN apk update & apk add build-base nodejs postgresql-dev tzdata: Install the required packages inside Docker.
  • More versions can be found at the Docker Hub. ruby '2.6.5' in Gemfile), then here would be FROM ruby:2.6.5-alpine.

    gem install jekyll could not find valid gem

    Note that the version needs to match the Ruby version in Gemfile. Here uses the latest alpine version of Ruby.

  • FROM ruby:alpine: Select the base image to build from.
  • RUN bundle install -no-binstubs -jobs $( nproc ) -retry 3ĬMD So I reinstalled ruby 2.0.0, and I could use bundle install with https.RUN apk update & apk add bash build-base nodejs postgresql-dev tzdata The second issue was that I think I had a bad install of ruby 2.0.0 even though I was using a fresh install of ruby 1.9.3. The solution for me was two parts: I changed https to http, and that temporarily solved the issue. # Gems used only for assets and not required Maybe I have another gem that is interrupting bundler? I have little experience with rails at this point. I've searched for this output, but did not find many related issues online.

    gem install jekyll could not find valid gem

    When using the commands 'bundle install' or 'bundle update' I get the following output: I'm attempting to follow the Hartl Rails Tutorial, and having trouble with the bundler gem.












    Gem install jekyll could not find valid gem