mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-14 20:40:17 -05:00
10 lines
259 B
Docker
10 lines
259 B
Docker
|
FROM sharelatex/sharelatex:4.1.3
|
||
|
|
||
|
# Patch: Make history-v1 http request timeout configurable
|
||
|
COPY pr_15409.patch /
|
||
|
RUN cd / && patch -p0 < pr_15409.patch
|
||
|
|
||
|
# Patch: Add verbose logging for I/O in history-v1
|
||
|
COPY pr_15410.patch .
|
||
|
RUN patch -p0 < pr_15410.patch
|