mirror of
https://github.com/Receipt-Wrangler/receipt-wrangler-api.git
synced 2026-01-13 06:30:13 -06:00
10 lines
188 B
Bash
10 lines
188 B
Bash
#!/bin/bash
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "Please provide a tag"
|
|
exit 1
|
|
fi
|
|
|
|
docker build . --no-cache -t noah231515/receipt-wrangler-api:$1
|
|
docker push noah231515/receipt-wrangler-api:$1
|