initial commit

This commit is contained in:
Tanishq Dubey
2022-07-31 18:18:40 +00:00
commit d68c7ee3b9
17 changed files with 627 additions and 0 deletions

View File

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