File size: 251 Bytes
242862b
d56a5cf
 
 
 
 
 
 
 
 
242862b
d3b3306
1
2
3
4
5
6
7
8
9
10
11
12
FROM bigcodebench/bigcodebench-gradio:latest

RUN apt-get update && \
    apt-get install -y \
      bash \
      git git-lfs \
      wget curl procps \
      htop vim nano && \
    rm -rf /var/lib/apt/lists/*
    
COPY . /app
CMD ["python", "app.py"]