Spaces:
Running
Running
Update Dockerfile
Browse files- 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
|