Update testing docker stuff

This commit is contained in:
askiiart 2023-09-05 20:42:40 -05:00
parent 359c237d15
commit 64278c0022
No known key found for this signature in database
GPG key ID: 85505F3A2264FA01
3 changed files with 11 additions and 4 deletions

4
dev-image/Dockerfile Normal file
View file

@ -0,0 +1,4 @@
FROM python:latest
WORKDIR /data
COPY ./run.sh /data/
CMD /data/run.sh

6
dev-image/run.sh Executable file
View file

@ -0,0 +1,6 @@
#!/bin/bash
set -e
pip3 install -r /data/AlwaysDungeons/requirements.txt
cp /data/.env /data/AlwaysDungeons/.env
cd /data/AlwaysDungeons
python3 main.py