binary1ne commited on
Commit
194a589
·
verified ·
1 Parent(s): 4734dc3

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +15 -9
Dockerfile CHANGED
@@ -4,21 +4,27 @@ ENV DEBIAN_FRONTEND=noninteractive \
4
  TZ=Asia/Kolkata \
5
  PYTHONUNBUFFERED=1
6
 
7
- # Basic deps
8
- RUN RUN rm -f /etc/apt/sources.list.d/*.list && \
9
  apt-get update && apt-get install -y --no-install-recommends \
10
  curl \
11
  ca-certificates \
12
  sudo \
13
- python3 \
14
- python3-pip \
15
- python3-venv \
16
  git \
17
- curl \
18
  wget \
19
- ca-certificates \
20
- && rm -rf /var/lib/apt/lists/*
21
-
 
 
 
 
 
 
 
 
 
 
22
 
23
  RUN add-apt-repository ppa:flexiondotorg/nvtop && \
24
  apt-get upgrade -y && \
 
4
  TZ=Asia/Kolkata \
5
  PYTHONUNBUFFERED=1
6
 
7
+ # Install some basic utilities
8
+ RUN rm -f /etc/apt/sources.list.d/*.list && \
9
  apt-get update && apt-get install -y --no-install-recommends \
10
  curl \
11
  ca-certificates \
12
  sudo \
 
 
 
13
  git \
 
14
  wget \
15
+ procps \
16
+ git-lfs \
17
+ zip \
18
+ unzip \
19
+ htop \
20
+ vim \
21
+ nano \
22
+ bzip2 \
23
+ libx11-6 \
24
+ build-essential \
25
+ libsndfile-dev \
26
+ software-properties-common \
27
+ && rm -rf /var/lib/apt/lists/*
28
 
29
  RUN add-apt-repository ppa:flexiondotorg/nvtop && \
30
  apt-get upgrade -y && \