feat: Dockerize + workflow WIP
Some checks failed
Docker build and push / terraform (push) Failing after 5s

Signed-off-by: Artémis Michelot <artemis.michelot@gmail.com>
This commit is contained in:
2025-09-26 11:04:35 +02:00
parent c11e0954fb
commit e530ce091e
5 changed files with 87 additions and 3 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM gitea.dotty.fr/dotty/ubuntu-poetry-latest:latest
RUN mkdir /app
WORKDIR /app
COPY poetry.lock pyproject.toml /app/
RUN poetry install --no-root
COPY main.py /app/
CMD ["python", "main.py"]