Dockerfile 274 B

12345678910
  1. FROM sharelatex/sharelatex:3.5.8
  2. # Node update
  3. RUN curl -sSL https://deb.nodesource.com/setup_16.x | bash - \
  4. && apt-get install -y nodejs
  5. # Patch: fetch access tokens via endpoint
  6. COPY pr_13485.patch .
  7. RUN patch -p0 < pr_13485.patch
  8. RUN node genScript compile | bash