Added Docker Stuff + Rearranged Files and Folders

This commit is contained in:
Discord Bot
2023-03-08 15:56:23 +00:00
parent 2704e92ba9
commit d5e009714e
9 changed files with 23 additions and 1 deletions

11
Dockerfiles/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.10
WORKDIR /app
COPY requirements.txt .
RUN pip3 install -r requirements.txt
COPY code /app
ENTRYPOINT [ "python", "wingl.py" ]