mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
11 lines
324 B
Bash
Executable file
11 lines
324 B
Bash
Executable file
#!/bin/sh
|
|
apt-get update
|
|
|
|
apt-get install vim imagemagick optipng --yes
|
|
|
|
wget https://s3.amazonaws.com/sl-public-dev-assets/ghostscript-9.15.tar.gz /tmp/ghostscript-9.15.tar.gz
|
|
tar -xvf /tmp/ghostscript-9.15.tar.gz
|
|
cd /tmp/ghostscript-9.15 && ./configure && make && make install
|
|
|
|
npm rebuild
|
|
chown -R node:node /app/uploads
|