BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
823000b9
Commit
823000b9
authored
Jun 27, 2017
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix/gb/qa/use-latest-chrome-version-in-qa-dockerfile' into 'master'
Use latest chrome and chrome driver in GitLab QA See merge request !12475
parents
99bdfd18
b3dd9e73
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
10 deletions
+3
-10
Dockerfile
qa/Dockerfile
+3
-10
No files found.
qa/Dockerfile
View file @
823000b9
FROM
ruby:2.3
LABEL
maintainer "Grzegorz Bizon <grzegorz@gitlab.com>"
ENV
CHROME_VERSION 59.0.3071.109-1
ENV
CHROME_DRIVER_VERSION 2.30
ENV
DEBIAN_FRONTEND noninteractive
##
# Update APT sources and install some dependencies
...
...
@@ -15,22 +13,17 @@ RUN apt-get update && apt-get install -y wget git unzip xvfb
#
RUN
curl
-sS
-L
https://dl.google.com/linux/linux_signing_key.pub | apt-key add -
RUN
echo
"deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main"
>
/etc/apt/sources.list.d/google.list
RUN
apt-get update
-q
&&
DEBIAN_FRONTEND
=
noninteractive apt-get
install
-y
google-chrome-stable
=
$CHROME_VERSION
RUN
apt-get update
-q
&&
apt-get
install
-y
google-chrome-stable
&&
apt-get clean
##
# Install chromedriver to make it work with Selenium
#
RUN
wget
-q
https://chromedriver.storage.googleapis.com/
$
CHROME_DRIVER_VERSION
/chromedriver_linux64.zip
RUN
wget
-q
https://chromedriver.storage.googleapis.com/
$
(
wget
-q
-O
- https://chromedriver.storage.googleapis.com/LATEST_RELEASE
)
/chromedriver_linux64.zip
RUN
unzip chromedriver_linux64.zip
-d
/usr/local/bin
RUN
apt-get clean
WORKDIR
/home/qa
COPY
./Gemfile* ./
RUN
bundle
install
COPY
./ ./
ENTRYPOINT
["bin/test"]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment