eigent/backend/benchmark/harbor/template/environment/Dockerfile
bytecii 639e3764a1
Some checks failed
Test / Run Python Tests (push) Has been cancelled
CodeQL Advanced / Analyze (actions) (push) Has been cancelled
CodeQL Advanced / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL Advanced / Analyze (python) (push) Has been cancelled
Pre-commit / pre-commit (push) Has been cancelled
feat: support harbor for benchmark (#1466)
Co-authored-by: bytecii <bytecii@users.noreply.github.com>
Co-authored-by: Wendong-Fan <133094783+Wendong-Fan@users.noreply.github.com>
2026-03-08 22:24:53 +08:00

14 lines
304 B
Docker

FROM python:3.11-slim
ENV DEBIAN_FRONTEND=noninteractive
SHELL ["/bin/bash", "-lc"]
# System dependencies
RUN apt-get update && apt-get install -y \
sudo git curl \
&& rm -rf /var/lib/apt/lists/*
# Set up directories
RUN mkdir -p /tests /logs/verifier /solution /workspace
WORKDIR /workspace