This commit is contained in:
2022-05-17 01:56:44 +03:00
commit 3a9b8c8468
117 changed files with 7175 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM browsers/base:7.3.6
RUN \
curl -s https://deb.opera.com/archive.key | apt-key add - && \
echo 'deb https://deb.opera.com/opera/ stable non-free' >> /etc/apt/sources.list.d/opera.list && \
apt-get update && \
apt-get -y install opera=12.16.1860 openjdk-8-jre-headless && \
rm -Rf /tmp/* && rm -Rf /var/lib/apt/lists/*
COPY selenium-server-standalone.jar /usr/share/selenium/
COPY entrypoint.sh /
USER selenium
EXPOSE 4444
ENTRYPOINT ["/entrypoint.sh"]