Spaces:
Runtime error
Runtime error
File size: 435 Bytes
c87c295 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# base env: py38 ubuntu20.04
FROM python:3.8-slim-buster
# install git
RUN apt-get update && apt-get install -y git
# upgrade to latest pip
RUN pip install --upgrade pip
COPY . /evalplus
RUN cd /evalplus && pip install .
# Pre-install the dataset
RUN python3 -c "from evalplus.data import get_human_eval_plus, get_mbpp_plus; get_human_eval_plus(); get_mbpp_plus()"
WORKDIR /app
ENTRYPOINT ["python3", "-m", "evalplus.evaluate"]
|