florian 3ceaf3f455
All checks were successful
/ build (push) Successful in 59s
Moved logging setup to seperate module
2025-11-03 19:47:37 +01:00

14 lines
209 B
Docker

FROM python:3.12-slim
RUN apt-get update && apt-get install -y git
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
WORKDIR /app
COPY src/ /app/
ENTRYPOINT ["python","main.py"]