mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-14 20:40:17 -05:00
9 lines
291 B
Docker
9 lines
291 B
Docker
|
FROM sharelatex/sharelatex:2.1.0
|
||
|
|
||
|
# Patch: defines recaptcha config to fix share-related issues
|
||
|
# - https://github.com/overleaf/overleaf/issues/684
|
||
|
ADD add-recaptcha-config.patch /etc/sharelatex/add-recaptcha-config.patch
|
||
|
RUN cd /etc/sharelatex/ && \
|
||
|
patch < add-recaptcha-config.patch
|
||
|
|