diceware/bin/docker-build.sh

14 lines
198 B
Bash
Raw Normal View History

2023-06-10 12:54:19 -04:00
#!/bin/bash
#
# Build our Docker image.
#
# Errors are fatal
set -e
# Change to the parent directory of this script
pushd $(dirname $0)/.. > /dev/null
docker build -t diceware . -f ./Dockerfile