Initial commit

This commit is contained in:
Deko
2023-03-03 20:38:17 +01:00
commit 61435c69e7
18 changed files with 707 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM python:3.11.2
COPY ./ /
WORKDIR /
RUN apt-get update
RUN apt-get -y dist-upgrade
RUN apt-get -y install python3-pip curl
RUN curl -sSL https://install.python-poetry.org | python3 -
ENV PATH=/root/.local/bin:$PATH
RUN poetry install
CMD ["poetry", "run", "python", "app/main.py"]