new file: .devcontainer/devcontainer.json
new file: CubeClt/Dockerfile new file: CubeClt/Resources/CubeCLT/install.sh new file: CubeClt/Resources/Scripts/reinstall-cmake.sh new file: CubeClt/build_and_publish.sh new file: CubeMx/Dockerfile new file: CubeMx/Resources/CubeMX/install-cubemx.sh new file: CubeMx/build_and_publish.sh modified: README.md
This commit is contained in:
15
CubeMx/build_and_publish.sh
Executable file
15
CubeMx/build_and_publish.sh
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
push=false
|
||||
# Process oprions
|
||||
while getopts "pt:" opt; do
|
||||
case $opt in
|
||||
p) push=true;;
|
||||
t) tag=$OPTARG;;
|
||||
\?) echo "Invalid option: -$OPTARG" >&2 ;;
|
||||
:) echo "Option -$OPTARG requires an argument." >&2 ;;
|
||||
esac
|
||||
done
|
||||
|
||||
|
||||
docker build -t nexus.springblast.de:8082/carly/docker-stm32/cubemx:$tag .
|
||||
Reference in New Issue
Block a user