You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Common CA certificates - https://packages.ubuntu.com/bionic/ca-certificates
22
24
ca-certificates \
23
-
openjdk-8-jre-headless \
25
+
# OpenJDK Java runtime, using Hotspot JIT (headless) - https://packages.ubuntu.com/bionic/openjdk-8-jre-headless
24
26
tzdata \
27
+
# Provide limited super user privileges to specific users - https://packages.ubuntu.com/bionic/sudo
25
28
sudo \
29
+
# De-archiver for .zip files - https://packages.ubuntu.com/bionic/unzip
26
30
unzip \
31
+
# retrieves files from the web - https://packages.ubuntu.com/bionic/wget
27
32
wget \
33
+
# lightweight and flexible command-line JSON processor - https://packages.ubuntu.com/bionic/jq
28
34
jq \
35
+
# command line tool for transferring data with URL syntax - https://packages.ubuntu.com/bionic/curl
29
36
curl \
37
+
# System for controlling process state - https://packages.ubuntu.com/bionic/supervisor
30
38
supervisor \
39
+
# GNU privacy guard - a free PGP replacement (dummy transitional package) - https://packages.ubuntu.com/bionic/gnupg2
31
40
gnupg2 \
32
-
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/* \
33
-
&& sed -i 's/securerandom\.source=file:\/dev\/random/securerandom\.source=file:\/dev\/urandom/' ./usr/lib/jvm/java-8-openjdk-amd64/jre/lib/security/java.security
# Includes minimal runtime used for executing non GUI Java programs
13
+
#========================
14
+
RUN apt-get update -qqy \
15
+
&& apt-get -qqy --no-install-recommends install \
16
+
# OpenJDK Java runtime, using Hotspot JIT (headless) - https://packages.ubuntu.com/bionic/openjdk-8-jre-headless
17
+
openjdk-8-jre-headless \
18
+
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/* \
19
+
&& sed -i 's/securerandom\.source=file:\/dev\/random/securerandom\.source=file:\/dev\/urandom/' ./usr/lib/jvm/java-8-openjdk-amd64/jre/lib/security/java.security
# Includes minimal runtime used for executing non GUI Java programs
6
+
#========================
7
+
RUN apt-get update -qqy \
8
+
&& apt-get -qqy --no-install-recommends install \
9
+
# OpenJDK Java runtime, using Hotspot JIT (headless) - https://packages.ubuntu.com/bionic/openjdk-8-jre-headless
10
+
openjdk-8-jre-headless \
11
+
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/* \
12
+
&& sed -i 's/securerandom\.source=file:\/dev\/random/securerandom\.source=file:\/dev\/urandom/' ./usr/lib/jvm/java-8-openjdk-amd64/jre/lib/security/java.security
_Selenium automates browsers._ That's it! What you do with that power is entirely up to you. Primarily, it is for automating web applications for testing purposes, but is certainly not limited to just that. Boring web-based administration tasks can (and should!) also be automated as well.
11
+
12
+
Selenium has the support of some of the largest browser vendors who have taken (or are taking) steps to make Selenium a native part of their browser. It is also the core technology in countless other browser automation tools, APIs and frameworks.
13
+
14
+
See the Selenium [site](http://docs.seleniumhq.org/) for documation on usage within your test code.
15
+
16
+
## License
17
+
18
+
View [license information](https://github.com/SeleniumHQ/docker-selenium/blob/master/LICENSE.md) for the software contained in this image.
19
+
20
+
## Getting Help
21
+
22
+
### User Group
23
+
24
+
The first place where people ask for help about Selenium is the [Official User Group](https://groups.google.com/forum/#!forum/selenium-users). Here, you'll find that most of the time, someone already found the problem you are facing right now, and usually reached the solution for which you are looking.
25
+
26
+
_Note: Please make sure to search the group before asking for something. Your question likely won't get answered if it was previously answered in another discussion!_
27
+
28
+
### Chat Room
29
+
30
+
The best place to ask for help is the user group (because they also keep the information accessible for others to read in the future). However, if you have a very important (or too simple) issue that needs a solution ASAP, you can always enter the IRC chat room. You might just find someone ready to help on `#selenium` at [Freenode](https://freenode.net/) or [SeleniumHQ Slack](https://seleniumhq.herokuapp.com/)
31
+
32
+
### Issues
33
+
34
+
If you have any problems with or questions about this image, please contact us through a [Github issue](https://github.com/SeleniumHQ/docker-selenium/issues). If you have any problems with or questions about Selenium, please contact us through Selenium's [Bug Tracker](https://github.com/SeleniumHQ/selenium/issues).
35
+
36
+
## Contributing
37
+
38
+
There are many ways to [contribute](http://docs.seleniumhq.org/about/getting-involved.jsp) whether by answering user questions, additional docs, or pull request we look forward to hearing from you.
39
+
40
+
If you do supply a patch we will need you to [sign the CLA](https://spreadsheets.google.com/spreadsheet/viewform?hl=en_US&formkey=dFFjXzBzM1VwekFlOWFWMjFFRjJMRFE6MQ#gid=0). We are part of [SFC](http://www.sfconservancy.org/)
0 commit comments