backend-api/Dockerfile
florian 52390e3c45
All checks were successful
Build & Publish to GHCR / build (push) Successful in 1m56s
Added git to the docker image
2025-11-03 19:20:38 +01:00

16 lines
211 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"]