Add testing stuff
This commit is contained in:
parent
c99da38a57
commit
93aa94e5e7
2 changed files with 12 additions and 0 deletions
4
testing/Dockerfile
Normal file
4
testing/Dockerfile
Normal file
|
@ -0,0 +1,4 @@
|
|||
FROM python:latest
|
||||
WORKDIR /data
|
||||
COPY ./run.sh /data/
|
||||
CMD /data/run.sh
|
8
testing/run.sh
Executable file
8
testing/run.sh
Executable file
|
@ -0,0 +1,8 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
cd /data
|
||||
git clone https://github.com/7trail/AlwaysDungeons
|
||||
cd /data/AlwaysDungeons
|
||||
pip3 install -r requirements
|
||||
cp /data/.env /data/AlwaysDungeons/.env
|
||||
python3 main.py
|
Loading…
Reference in a new issue