mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
aa142b3c09
[server-pro] add hotfixes 4.2.5 and 5.0.5 GitOrigin-RevId: 55a138662d3c2059ce802e6a6fd70e70fd01c8cd
12 lines
367 B
Docker
12 lines
367 B
Docker
FROM sharelatex/sharelatex:5.0.4
|
|
|
|
# Install dev dependencies as part of "genScript compile"
|
|
COPY pr_18570.patch .
|
|
RUN patch -p1 < pr_18570.patch && rm pr_18570.patch
|
|
|
|
# Adopted from https://github.com/overleaf/internal/pull/18819
|
|
COPY pr_18819.patch .
|
|
RUN patch -p1 < pr_18819.patch && rm pr_18819.patch
|
|
|
|
# Recompile frontend assets
|
|
RUN node genScript compile | bash
|