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
With the recently released Orca 1.3.0 I see the following message when running orca --help in an Ubuntu Docker container with Anaconda 2019.10 and Chromium 80.0.3987.87:
[18:0313/185321.369451:FATAL:atom_main_delegate.cc(210)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180.
/bin/bash: line 1: 18 Trace/breakpoint trap (core dumped) orca --help
With the same underlying configuration this error is not thrown in Orca 1.2.1.
The image build by the Dockerfile found below reproduces this error. Simply run
docker build -t orca-test:latest .
docker run --rm orca-test
Running the image as another user does not help either: docker run --rm -u daemon orca-test
On the other hand, the container built using the same Dockerfile with Orca 1.2.1 does not show errors:
orca --helpin an Ubuntu Docker container with Anaconda 2019.10 and Chromium 80.0.3987.87:docker build -t orca-test:latest .docker run --rm orca-testRunning the image as another user does not help either:
docker run --rm -u daemon orca-testdocker build -t orca-test:1.2.1 --build-arg "PLOTLY_ORCA_VERSION==1.2.1" .docker run --rm orca-test:1.2.1Is there any workaround or did I miss anything?
The dockerfile.txt: