14 lines
594 B
Docker
Raw Normal View History

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