mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
39189978ac
[misc] upgrade Node.js to 18.19.1 GitOrigin-RevId: 1bd2008682b585c3fccc65f74c90ba7fc9edc023
6 lines
177 B
Docker
6 lines
177 B
Docker
FROM sharelatex/sharelatex:4.2.2
|
|
|
|
# Upgrade Node.js to version 18.19.1
|
|
RUN apt-get update \
|
|
&& apt-get install -y nodejs=18.19.1-1nodesource1 \
|
|
&& rm -rf /var/lib/apt/lists/*
|