Thomas E Lackey
f55a14bd6c
* Create new base container for pre-compiled webapps. * Set the webapp dir appropriately.
10 lines
338 B
Bash
Executable File
10 lines
338 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Build cerc/laconic-registry-cli
|
|
|
|
source ${CERC_CONTAINER_BASE_DIR}/build-base.sh
|
|
|
|
# See: https://stackoverflow.com/a/246128/1701505
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
|
|
docker build -t cerc/webapp-base:local ${build_command_args} -f ${SCRIPT_DIR}/Dockerfile ${SCRIPT_DIR}
|