Sha256: b3f9035f5cdb1d90e66a9dc7d6078b3a5ecba85b567ca82f0b47c4b73b6d11a6
Contents?: true
Size: 657 Bytes
Versions: 4
Compression:
Stored size: 657 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 RUN bundle install
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
shopify-cli-2.6.3 | Dockerfile |
shopify-cli-2.6.2 | Dockerfile |
shopify-cli-2.6.1 | Dockerfile |
shopify-cli-2.6.0 | Dockerfile |