diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..466620f --- /dev/null +++ b/.dockerignore @@ -0,0 +1,4 @@ +config.php +Gloomhaven/ +Jaws of the Lion/ +config.php \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..593738c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM php:8-slim + +COPY *.php / + +ENTRYPOINT ["/usr/bin/php", "/src/run.php"] \ No newline at end of file