5 lines
172 B
Bash
5 lines
172 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
docker build -t localhost/nicole/seagull-game --target dev .
|
||
|
echo "build complete. starting container ..."
|
||
|
docker run --rm -p 80:80 localhost/nicole/seagull-game
|