8 lines
172 B
Bash
8 lines
172 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
# build the image
|
||
|
sudo docker build -f ./Dockerfile . -t docker.io/binarydad/notes:latest
|
||
|
|
||
|
# push the image
|
||
|
sudo docker push docker.io/binarydad/notes:latest
|