mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-24 16:36:46 +00:00
17 lines
797 B
Bash
Executable File
17 lines
797 B
Bash
Executable File
#!/bin/bash
|
|
# Bash strict mode: http://redsymbol.net/articles/unofficial-bash-strict-mode/
|
|
set -euo pipefail
|
|
|
|
# This file is automatically run by Baserow when the plugin is built into a Dockerfile.
|
|
# It will also be called when building the plugin in an existing container. You should
|
|
# only perform build steps in this script which make sense to run in a Dockerfile.
|
|
|
|
# Any install steps that will modify things in Baserow's data volume should instead
|
|
# be done in the runtime_setup.sh script next to this one.
|
|
|
|
# Baserow will automatically install this node module for you so you should not
|
|
# repeat any yarn/npm installs here.
|
|
|
|
# Instead this file is ideal for any other installation custom steps here required by
|
|
# your plugin. For example installing a postgres extension used by your plugin.
|