Added Docker Stuff + Rearranged Files and Folders
This commit is contained in:
11
Dockerfiles/Dockerfile
Normal file
11
Dockerfiles/Dockerfile
Normal 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" ]
|
||||
Reference in New Issue
Block a user