mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
10 lines
238 B
Bash
Executable File
10 lines
238 B
Bash
Executable File
USERNAME=iron
|
|
# build it
|
|
docker build -t $USERNAME/hello:ruby .
|
|
# test it
|
|
echo '{"name":"Johnny"}' | docker run --rm -i $USERNAME/hello
|
|
# tag it
|
|
docker run --rm -v "$PWD":/app treeder/bump patch
|
|
# push it
|
|
docker push $USERNAME/hello:ruby
|