-
Notifications
You must be signed in to change notification settings - Fork 52
/
Dockerfile.base
27 lines (23 loc) · 1.01 KB
/
Dockerfile.base
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
FROM node:18-buster
ENV PATH="/root/.rbenv/shims:${PATH}"
# Install dependencies
RUN apt-get update \
&& apt-get -y install sudo jq rbenv \
&& mkdir -p "$(rbenv root)"/plugins \
&& git clone https://github.com/rbenv/ruby-build.git "$(rbenv root)"/plugins/ruby-build \
&& git -C "$(rbenv root)"/plugins/ruby-build pull \
&& rbenv install 3.2.0 \
&& rbenv global 3.2.0
# Install latest chrome stable package.
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
RUN sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
RUN apt-get update \
&& apt-get install -y google-chrome-stable --no-install-recommends \
&& apt-get clean
# install puppeteer and stuff
ENV npm_config_prefix="$GITHUB_WORKSPACE/.node"
ENV PATH="$npm_config_prefix:${PATH}"
RUN mkdir -p "$npm_config_prefix" \
&& chmod -R 777 "$npm_config_prefix" \
&& umask 000 \
&& npm install -g @lhci/[email protected] lighthouse puppeteer