mirror of
https://github.com/bingohuang/docker-labs.git
synced 2025-07-13 09:12:43 +08:00
9 lines
236 B
Bash
Executable File
9 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
|
|
version=":$1"
|
|
echo "version=$version"
|
|
|
|
gox -osarch="linux/amd64" \
|
|
&& docker build -t hub.c.163.com/bingohuang/docker-labs$version -f Dockerfile.build . \
|
|
&& docker push hub.c.163.com/bingohuang/docker-labs$version
|