Results 4 comments of Jerome Gallego

> I run it headless mode, but it seems you want to use virtual displays. As I suspected the problem was not in docker, subprocess is not an issue since...

@HMaker Thank's, your answer confirm what i found in my research. Finally i decided to emulate my docker container with amd64 (i have a arm64 processor on my local machine)...

@HMaker here is my Dockerfile, maybe something is wrong here ``` # As Scrapy runs on Python, I choose the official Python 3 Docker image. FROM --platform=linux/amd64 python:3.8.11-slim-buster ENV PYTHONDONTWRITEBYTECODE...

Hi, thank you for your quick answer ! I combine selenium with Scrapy, here is my Scrapy middleware where I initialize the WebDriver to get the content of the pages....