Added Dockerfile and scripts to build and run a docker image for development

This commit is contained in:
2021-09-06 14:02:15 -04:00
parent 0c9fc19729
commit f018204482
4 changed files with 25 additions and 0 deletions

3
bin/docker-build-dev.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
docker build -t minecraft-website .

3
bin/docker-run-dev.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
docker run -d --rm -p 3000:3000 --name minecraft-website minecraft-website