Files
freebox_cert_update/Dockerfile
Artémis Michelot e530ce091e
Some checks failed
Docker build and push / terraform (push) Failing after 5s
feat: Dockerize + workflow WIP
Signed-off-by: Artémis Michelot <artemis.michelot@gmail.com>
2025-09-26 11:04:35 +02:00

11 lines
197 B
Docker

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"]