Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +6 -6
Dockerfile
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
FROM ubuntu:16.04
|
2 |
|
3 |
-
# Install Python 3.
|
4 |
RUN apt-get update && apt-get install -y \
|
5 |
software-properties-common \
|
6 |
wget \
|
@@ -17,22 +17,22 @@ RUN apt-get update && apt-get install -y \
|
|
17 |
pkg-config \
|
18 |
graphviz \
|
19 |
openjdk-8-jdk \
|
20 |
-
python3.
|
21 |
-
python3.
|
22 |
python3-pip \
|
23 |
ant \
|
24 |
ca-certificates \
|
25 |
&& apt-get clean \
|
26 |
&& update-ca-certificates -f
|
27 |
|
28 |
-
# Install a pip version compatible with Python 3.
|
29 |
-
RUN python3.
|
30 |
|
31 |
# Copy requirements file
|
32 |
COPY requirements.txt /tmp/requirements.txt
|
33 |
|
34 |
# Install Python dependencies
|
35 |
-
RUN python3.
|
36 |
|
37 |
# Create a new user
|
38 |
RUN useradd -m -u ${NB_UID} ${NB_USER}
|
|
|
1 |
FROM ubuntu:16.04
|
2 |
|
3 |
+
# Install Python 3.4 and basic tools
|
4 |
RUN apt-get update && apt-get install -y \
|
5 |
software-properties-common \
|
6 |
wget \
|
|
|
17 |
pkg-config \
|
18 |
graphviz \
|
19 |
openjdk-8-jdk \
|
20 |
+
python3.4 \
|
21 |
+
python3.4-dev \
|
22 |
python3-pip \
|
23 |
ant \
|
24 |
ca-certificates \
|
25 |
&& apt-get clean \
|
26 |
&& update-ca-certificates -f
|
27 |
|
28 |
+
# Install a pip version compatible with Python 3.4
|
29 |
+
RUN python3.4 -m pip install --upgrade "pip<21.0"
|
30 |
|
31 |
# Copy requirements file
|
32 |
COPY requirements.txt /tmp/requirements.txt
|
33 |
|
34 |
# Install Python dependencies
|
35 |
+
RUN python3.4 -m pip install --no-cache-dir -r /tmp/requirements.txt
|
36 |
|
37 |
# Create a new user
|
38 |
RUN useradd -m -u ${NB_UID} ${NB_USER}
|