mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
10 lines
340 B
Docker
10 lines
340 B
Docker
FROM sharelatex/sharelatex:2.4.1
|
|
|
|
|
|
# Patch: Fixes anonymous read/write sharing
|
|
COPY anonymous-metadata.patch ${baseDir}
|
|
RUN cd ${baseDir} && patch -p0 < anonymous-metadata.patch
|
|
|
|
# Patch: Fixes left footer with html text
|
|
COPY left-footer-skip-translation.patch ${baseDir}
|
|
RUN cd ${baseDir} && patch -p0 < left-footer-skip-translation.patch
|