8 lines
172 B
Bash
Executable File
8 lines
172 B
Bash
Executable File
#! /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
|