Forked from
EIC / NPDet
487 commits behind, 371 commits ahead of the upstream repository.
-
Whitney Armstrong authored
- modified: .gitlab-ci.yml - modified: CMakeLists.txt - new file: containers/docker/Dockerfile - new file: containers/docker/Makefile - new file: containers/docker/config.env - new file: containers/docker/usage.sh - new file: containers/docker/version.sh
Whitney Armstrong authored- modified: .gitlab-ci.yml - modified: CMakeLists.txt - new file: containers/docker/Dockerfile - new file: containers/docker/Makefile - new file: containers/docker/config.env - new file: containers/docker/usage.sh - new file: containers/docker/version.sh
usage.sh 547 B
# INSTALL
# - copy the files deploy.env, config.env, version.sh and Makefile to your repo
# - replace the vars in deploy.env
# - define the version script
# Build the container
make build
# Build and publish the container
make release
# Publish a container to AWS-ECR.
# This includes the login to the repo
make publish
# Run the container
make run
# Build an run the container
make up
# Stop the running container
make stop
# Build the container with differnt config and deploy file
make cnf=another_config.env dpl=another_deploy.env build