Intial commit

This commit is contained in:
2021-01-09 22:13:34 +13:00
parent e3d27a1ba7
commit d5282f1c99
18 changed files with 6826 additions and 131 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM python:3
RUN apt update && apt install -y python3-pip &&\
/usr/bin/python3 -m pip install aiohttp aiodocker docker
RUN mkdir /app
COPY ./public /app/public
COPY ./src /app/src
EXPOSE 8080
WORKDIR /app
ENTRYPOINT [ "/usr/bin/python3", "/app/src/main.py" ]