Dockerfile 198 B

12345678
  1. FROM python:3.13-slim
  2. WORKDIR /app
  3. ENV METALS_HOST=0.0.0.0 METALS_RELOAD=0
  4. COPY requirements.txt ./
  5. RUN pip install --no-cache-dir -r requirements.txt
  6. COPY . .
  7. EXPOSE 8515
  8. CMD ["python", "main.py"]