mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-22 06:49:49 -04:00
14 lines
594 B
Docker
14 lines
594 B
Docker
FROM node:22.4-bookworm
|
|
|
|
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 -
|
|
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 |