mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
8 lines
334 B
Docker
8 lines
334 B
Docker
FROM sharelatex/sharelatex:2.5.1
|
|
|
|
# Patch: fixes registration token creation
|
|
COPY create-token-lowercase-email.patch ${baseDir}
|
|
RUN cd ${baseDir} && patch -p0 < create-token-lowercase-email.patch
|
|
|
|
# Migration for tokens with invalid email addresses
|
|
ADD 12_update_token_email.js /var/www/sharelatex/migrations/12_update_token_email.js
|