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