[ 
https://issues.apache.org/jira/browse/TEZ-4337?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17430794#comment-17430794
 ] 

Jonathan Turner Eagles commented on TEZ-4337:
---------------------------------------------

Documenting the steps for testing puppeteer in ubuntu docker

{code:bash}
% docker build -f build-tools/docker/Dockerfile .
% docker images
REPOSITORY   TAG       IMAGE ID       CREATED              SIZE
<none>       <none>    87e0e291e68f   About a minute ago   2.02GB
# Use image id to run new container
docker run -it <IMAGE ID from above>
npm install -g yarn
adduser me
su me
cd
yarn add puppeteer
cat > run-chrome.js
const puppeteer = require("puppeteer");
const { execFileSync } = require("child_process");

let exePath = puppeteer.executablePath();
let args = process.argv.slice(2);
console.log('exePath', exePath);
console.log('args', args);
execFileSync(exePath, args);
<ENTER><CTRL-D>
node run-chrome.js --headless --no-sandbox
exit
exit
docker container ls --all
docker rm <CONTAINER ID from above>
docker rmi <IMAGE ID from above>
{code}


> [TEZ UI] Upgrade to Ember 3
> ---------------------------
>
>                 Key: TEZ-4337
>                 URL: https://issues.apache.org/jira/browse/TEZ-4337
>             Project: Apache Tez
>          Issue Type: Bug
>            Reporter: Jonathan Turner Eagles
>            Assignee: Jonathan Turner Eagles
>            Priority: Major
>          Time Spent: 40m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to