mirror of
https://github.com/dmuth/diceware.git
synced 2024-11-21 00:16:29 -05:00
13 lines
188 B
Bash
Executable file
13 lines
188 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# Script to run the script in prod mode
|
|
#
|
|
|
|
# Errors are fatal
|
|
set -e
|
|
|
|
# Change to the parent directory
|
|
pushd $(dirname $0)/.. > /dev/null
|
|
|
|
docker run --rm -p 80:80 diceware
|
|
|