mirror of
https://github.com/dani-garcia/bw_web_builds.git
synced 2024-11-15 01:28:20 -07:00
12568dfbb4
Sometimes you want to set specific environment variables during build. For example, on some systems nodejs needs some extra options to be able to run correctly on low memory systems. To make sure this will be loaded and works on both scripts and Dockerfile, you can now create a `.build_env` file. This `.build_env` file should contain all the variables (including an export command) you want to expose during build time. The template file has a nodejs example. Closes #183 Signed-off-by: BlackDex <black.dex@gmail.com>
15 lines
483 B
Bash
15 lines
483 B
Bash
# shellcheck disable=SC2034,SC2148
|
|
# ###
|
|
# Do not use quotes for these variables!
|
|
#
|
|
# These variables will be loaded during the building process
|
|
# This can be useful if you need to provide special variables for NodeJS or other applications
|
|
# Make sure you export variables which are used for external scripts, else they will not be seen!
|
|
# ###
|
|
|
|
# Configure NodeJS Virtual Memory Allocation
|
|
# NODE_OPTIONS=--max-old-space-size=4096
|
|
# export NODE_OPTIONS
|
|
|
|
# vim: syntax=sh filetype=sh
|