diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7609b39 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM mwalbeck/python-poetry:2.1-3.11 + +WORKDIR /InfoBot + +COPY pyproject.toml poetry.lock ./ +RUN poetry install --no-interaction --no-root --only main + +COPY . . + +CMD ["poetry", "run", "python", "-m", "main"]