# 성능지표 평가 전용 이미지. # 계획서가 평가환경을 python 3.9 로 못박아 두었고(성능지표 #3/#4/#7), # 시험 서버의 시스템 파이썬은 3.6.9 라 컨테이너로 맞춘다. GPU 는 쓰지 않는다. FROM python:3.9-slim WORKDIR /app RUN apt-get update && apt-get install -y --no-install-recommends gcc g++ \ && rm -rf /var/lib/apt/lists/* COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY app ./app COPY scripts ./scripts COPY data/taxonomy ./data/taxonomy COPY data/precedents ./data/precedents COPY data/autobiography ./data/autobiography COPY data/reference ./data/reference ENV USE_LLM_LEGAL_JUDGE=false CMD ["python", "scripts/run_precision_eval.py", "--testset", "data/eval/testset_v2"]