Sha256: e678e8d2fe0a7f4bd945c0835a140f49d308cb3e86fb5144b6b74d7be59071fa
Contents?: true
Size: 667 Bytes
Versions: 1
Compression:
Stored size: 667 Bytes
Contents
# This is a Docker image to test the CLI in UNIX environments other than macOS # Build the image: docker build . -t shopify-cli # Run tests: docker run -t --rm --volume "$(pwd):/usr/src/app" shopify-cli bundle exec rake test FROM cimg/ruby:2.7.1-node RUN git config --global user.email "development-lifecycle@shopify.com" RUN git config --global user.name "Development Lifecycle" # throw errors if Gemfile has been modified since Gemfile.lock RUN bundle config --global frozen 1 WORKDIR /usr/src/app COPY Gemfile Gemfile.lock ./ COPY shopify-cli.gemspec shopify-cli.gemspec COPY lib/shopify-cli/version.rb lib/shopify-cli/version.rb COPY . . RUN bundle install
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
shopify-cli-2.4.0 | Dockerfile |