Files
trading-daemon/Dockerfile.analytics
Melchior Reimers 33f5c90fce
All checks were successful
Deployment / deploy-docker (push) Successful in 17s
updated
2026-01-25 17:36:29 +01:00

11 lines
168 B
Docker

FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "-m", "src.analytics.worker"]