Files
trading-daemon/Dockerfile.metadata
Melchior Reimers 608af97a93
All checks were successful
Deployment / deploy-docker (push) Successful in 4s
feat: add web dashboard and metadata enrichment daemon
2026-01-23 17:49:48 +01:00

11 lines
165 B
Docker

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