mirror of
https://github.com/outbackdingo/openlan-cgw.git
synced 2026-01-27 18:19:52 +00:00
11 lines
240 B
Bash
Executable File
11 lines
240 B
Bash
Executable File
#!/bin/bash
|
|
|
|
[ -z "$IMGTAG" ] && IMGTAG="latest"
|
|
|
|
cd ..
|
|
docker build \
|
|
-t tip-tip-wlan-cloud-ucentral.jfrog.io/cgw-toolbox:$IMGTAG \
|
|
-f toolbox/Dockerfile .
|
|
docker push \
|
|
tip-tip-wlan-cloud-ucentral.jfrog.io/cgw-toolbox:$IMGTAG
|