diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..75dd116 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +ledger.db \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ca5d95a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM python:3 + +RUN pip install discord + +WORKDIR /usr/app/src + +COPY Acronymbot.py ./ +COPY BlackJack.py ./ +COPY Ledger.py ./ + +CMD [ "python", "./Acronymbot.py" ] \ No newline at end of file diff --git a/__pycache__/BlackJack.cpython-310.pyc b/__pycache__/BlackJack.cpython-310.pyc index e1858c4..43a1254 100644 Binary files a/__pycache__/BlackJack.cpython-310.pyc and b/__pycache__/BlackJack.cpython-310.pyc differ diff --git a/__pycache__/Ledger.cpython-310.pyc b/__pycache__/Ledger.cpython-310.pyc index eb199f5..6b3e5c5 100644 Binary files a/__pycache__/Ledger.cpython-310.pyc and b/__pycache__/Ledger.cpython-310.pyc differ diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..e69de29