mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-19 02:01:04 +00:00
5 lines
179 B
Bash
5 lines
179 B
Bash
|
#!/bin/bash
|
||
|
[ "$1" = "" ] && echo "you must provide one argument, the build version" && exit 1
|
||
|
docker build -t plumeorg/plume-buildenv:$1 .
|
||
|
docker push plumeorg/plume-buildenv:$1
|