forked from Shopify/shopify-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tests.dockerfile
35 lines (26 loc) · 1.12 KB
/
Tests.dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# 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.5
RUN git config --global user.email "development-lifecycle@shopify.com"
RUN git config --global user.name "Development Lifecycle"
RUN gem update bundler
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
# Update git
RUN sudo add-apt-repository -y ppa:git-core/ppa
RUN sudo apt-get update
RUN sudo apt-get install git -y
# Install the latest version of NodeJS
RUN sudo apt-get install ca-certificates -y
RUN curl -fsSL https://deb.nodesource.com/setup_current.x | sudo -E bash -
RUN sudo apt-get install -y nodejs
# Install the latest version of Yarn
RUN sudo npm install --global yarn
# Python is necessary to compile NPM packages with native extensions through node-gyp
RUN sudo apt install python2-minimal -y
# Install sqlite3
RUN sudo apt-get install libsqlite3-dev -y