mirror of
https://github.com/dmuth/diceware.git
synced 2024-11-21 08:26:29 -05:00
13 lines
198 B
Bash
Executable file
13 lines
198 B
Bash
Executable file
#!/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
|
|
|