2026-06-25 07:29:16 +00:00
|
|
|
FROM rust:1-bookworm
|
|
|
|
|
|
|
|
|
|
RUN apt-get update && \
|
|
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
|
|
|
|
ca-certificates \
|
|
|
|
|
pkg-config \
|
|
|
|
|
python3 \
|
|
|
|
|
python3-pip && \
|
|
|
|
|
python3 -m pip install --no-cache-dir --break-system-packages tinygrad==0.12.0 numpy && \
|
|
|
|
|
apt-get clean && \
|
|
|
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
|
|
ENV DEV=CPU
|
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE=1
|
|
|
|
|
ENV CARGO_TARGET_DIR=/workspace/target
|
|
|
|
|
COPY . /workspace
|
|
|
|
|
WORKDIR /workspace
|
2026-07-07 10:40:02 +00:00
|
|
|
RUN cargo test -p mvp-system --features local-e2e --test local-e2e-cluster --no-run
|
2026-06-25 07:29:16 +00:00
|
|
|
|
2026-07-07 10:40:02 +00:00
|
|
|
ENTRYPOINT ["sh", "-c", "test_bin=$(find /workspace/target/debug/deps -maxdepth 1 -type f -perm /111 \\( -name 'local_e2e_cluster-*' -o -name 'local-e2e-cluster-*' \\) | head -n 1); exec \"$test_bin\" \"$@\"", "local-e2e-cluster"]
|