Add docker

This commit is contained in:
Nemo 2022-04-13 17:06:47 +05:30
parent fcbc29e64e
commit 1746a22162
2 changed files with 9 additions and 0 deletions

4
.dockerignore Normal file
View File

@ -0,0 +1,4 @@
config.php
Gloomhaven/
Jaws of the Lion/
config.php

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM php:8-slim
COPY *.php /
ENTRYPOINT ["/usr/bin/php", "/src/run.php"]