Datasets:
File size: 478 Bytes
d03762b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | FROM python:3.12-slim
ENV DEBIAN_FRONTEND=noninteractive
# Install system dependencies
RUN apt-get update && apt-get install -y \
curl \
git \
build-essential \
&& rm -rf /var/lib/apt/lists/*
# Install Python packages (base + task-specific)
RUN pip install --no-cache-dir \
numpy==1.26.4 \
pandas==2.2.2 \
scipy==1.13.1 \
matplotlib==3.9.0 \
pytest \
pytest-json-ctrf
WORKDIR /root
# Copy data files
COPY data /root/environment/data
|