mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-24 01:29:35 +02:00
* Upgrade to node 22.18.0 * Switch projects-data fixture to strip-types compatible form GitOrigin-RevId: 4a7ec56f4a82395d2be8870526df0c679de38ab5
7 lines
318 B
Docker
7 lines
318 B
Docker
FROM node:22.18.0
|
|
|
|
# Install Google Chrome
|
|
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
|