initial commit

This commit is contained in:
Tanishq Dubey
2022-07-31 14:44:25 -04:00
commit 8d6448a952
7 changed files with 467 additions and 0 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM python:buster
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
copy . .
CMD ["python", "./main.py"]