Code Monkey home page Code Monkey logo

Comments (7)

GrzegorzDrozd avatar GrzegorzDrozd commented on August 20, 2024 1

from ashot.

olalob avatar olalob commented on August 20, 2024

if You need my system info:

  • Ubuntu 16.04 64-bit
  • Chrome Version 59.0.3071.115 (Official Build) (64-bit)
  • Chrome Driver 2.30
  • Selenium 3.4.0
  • Java 8.0_131

from ashot.

pazone avatar pazone commented on August 20, 2024

Hi, @olalob Could you please provide the docker image which is used for it?

from ashot.

olalob avatar olalob commented on August 20, 2024

Hello @pazone, here is my Docker file (sorry comments are formatted as headers here):

FROM ubuntu:xenial

Update & upgrade system

RUN apt-get update &&
apt-get upgrade -yq

Install required packages

RUN apt-get install -yq wget ca-certificates openjdk-8-jre-headless

Install Chrome

RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - &&
sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' &&
apt-get update &&
apt-get install -yq google-chrome-stable

Install international fonts

RUN apt-get install -yq fonts-arphic-ukai fonts-arphic-uming fonts-ipafont-mincho fonts-ipafont-gothic fonts-unfonts-core

Installation cleanup

RUN apt-get clean &&
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

Create data directory

RUN mkdir /data
WORKDIR /data

Add chrome user

RUN addgroup chrome &&
useradd -m -g chrome chrome
USER chrome

Expose Chrome remote debugging port

EXPOSE 9222

from ashot.

pazone avatar pazone commented on August 20, 2024

Have you tried to use common image from here or here?
I don't see anything like xvfb in you Dockerfile. It looks like it has no graphic environment.
What's the purpose of custom docker image?

from ashot.

pazone avatar pazone commented on August 20, 2024

So, the solution is to use common docker image or to add xvfb. It will help. Good luck!

from ashot.

olalob avatar olalob commented on August 20, 2024

Thanks! I try Your suggestion.

from ashot.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.