Docker Functionality added

This commit is contained in:
2023-01-01 18:29:11 +10:00
parent cb0778bbc2
commit 61579a75a4
5 changed files with 12 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
ledger.db

11
Dockerfile Normal file
View File

@@ -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" ]

Binary file not shown.

0
requirements.txt Normal file
View File