duongve commited on
Commit
92dc3d5
·
verified ·
1 Parent(s): 97fea5e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile CHANGED
@@ -5,6 +5,12 @@ ENV DEBIAN_FRONTEND noninteractive
5
 
6
  WORKDIR /content
7
 
 
 
 
 
 
 
8
  ADD . .
9
 
10
  RUN pip install --no-cache-dir -r ./requirements.txt
 
5
 
6
  WORKDIR /content
7
 
8
+ RUN apt-get update && \
9
+ apt-get install -y --no-install-recommends \
10
+ build-essential \
11
+ g++ \
12
+ && rm -rf /var/lib/apt/lists/*
13
+
14
  ADD . .
15
 
16
  RUN pip install --no-cache-dir -r ./requirements.txt