Just to start, needs a lot of cleanup.

This commit is contained in:
nmc
2023-01-14 23:34:48 -05:00
parent cbbd74972e
commit 57ce843887
6 changed files with 287 additions and 1 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.9
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY . /app
CMD [ "python", "main.py" ]