We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9b9b8b commit 43d6a12Copy full SHA for 43d6a12
1 file changed
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM python:slim
+FROM python:3.7-slim
2
LABEL maintainer="Charlie Lewis <clewis@iqt.org>"
3
4
COPY requirements.txt requirements.txt
@@ -10,11 +10,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
10
python3 \
11
python3-dev \
12
tcpdump \
13
- && pip3 install --no-cache-dir --upgrade pip==19.3 \
+ && pip3 install --no-cache-dir --upgrade pip==19.3.1 \
14
&& pip3 install wheel \
15
&& pip3 install --no-cache-dir -r requirements.txt\
16
- && pip3 install tensorflow \
17
- && rm -rf tensorflow-1.14.0-cp37-cp37m-linux_x86_64.whl \
18
&& apt-get remove --purge --auto-remove -y curl gcc git python3-dev \
19
&& apt-get clean \
20
&& apt-get autoclean \
0 commit comments