Initial files

This commit is contained in:
2021-07-04 02:23:38 +00:00
parent 92f55f4509
commit 8aade76b9e
4 changed files with 50 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:slim
RUN pip install aiohttp
COPY src /src
COPY test /test
CMD [ "python", "/src/main.py"]