terryyz commited on
Commit
d56a5cf
·
verified ·
1 Parent(s): d0ce8bd

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile CHANGED
@@ -1,3 +1,12 @@
1
  FROM bigcodebench/bigcodebench-gradio:latest
 
 
 
 
 
 
 
 
 
2
  COPY . /app
3
  CMD ["python", "app.py"]
 
1
  FROM bigcodebench/bigcodebench-gradio:latest
2
+
3
+ RUN apt-get update && \
4
+ apt-get install -y \
5
+ bash \
6
+ git git-lfs \
7
+ wget curl procps \
8
+ htop vim nano && \
9
+ rm -rf /var/lib/apt/lists/*
10
+
11
  COPY . /app
12
  CMD ["python", "app.py"]