Skip to content

Instantly share code, notes, and snippets.

View chuongtrh's full-sized avatar
👻
Dream big, do small 🏃‍♂️

Chuong Tran chuongtrh

👻
Dream big, do small 🏃‍♂️
View GitHub Profile
@chuongtrh
chuongtrh / Dockerfile
Last active January 18, 2020 13:55
Run puppeteer on docker with node:8.9-alpine
FROM node:8.9-alpine
RUN apk update && apk upgrade && \
echo http://nl.alpinelinux.org/alpine/latest-stable/community >> /etc/apk/repositories && \
echo http://nl.alpinelinux.org/alpine/latest-stable/main >> /etc/apk/repositories && \
apk add --no-cache \
zlib-dev \
xvfb \
xorg-server \
dbus \