8 lines
304 B
Bash
Executable file
8 lines
304 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
|
|
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
|
|
set -e
|
|
|
|
|
|
apt-get update && apt-get install gcc g++ make && \
|
|
apt install git postgresql-13 libpq-dev libjemalloc-dev libvips42 yarn -yy
|