|
|
|
|
|
by techntoke
2161 days ago
|
|
Here is an open source way to do this yourself: # Dockerfile
FROM node:alpine3.12
RUN apk add --no-cache chromium \
&& yarn add puppeteer-core \
&& apk add \
--no-cache \
--repository http://dl-cdn.alpinelinux.org/alpine/edge/testing \
novnc
|
|