16 lines
680 B
Docker
Raw Normal View History

2024-02-28 00:53:24 +00:00
FROM node:18.14.1-buster-slim
2020-08-18 19:17:23 -04:00
RUN apt-get update -qqy \
&& apt-get -qqy install \
dumb-init gnupg wget ca-certificates apt-transport-https \
ttf-wqy-zenhei \
git curl unzip build-essential ruby ruby-dev ruby-ffi gcc make \
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
RUN wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& echo "deb https://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list \
&& apt-get update -qqy \
&& apt-get -qqy install google-chrome-unstable \
&& rm /etc/apt/sources.list.d/google-chrome.list \
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*