File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -7,14 +7,15 @@ RUN apt-get update && \
7
7
RUN apt-get install -y git
8
8
9
9
# Installing the Tensorflow Object Detection API (https://gilberttanner.com/blog/installing-the-tensorflow-object-detection-api)
10
- RUN git clone --depth 1 https://github.com/tensorflow/models.git
10
+ RUN git clone --depth 1 -b r1.13.0 https://github.com/tensorflow/models.git
11
11
12
12
# Install object detection api dependencies
13
13
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y protobuf-compiler python3-pil python3-lxml python3-tk && \
14
14
pip install Cython && \
15
15
pip install contextlib2 && \
16
16
pip install jupyter && \
17
17
pip install matplotlib && \
18
+ pip install Pillow && \
18
19
pip install tensorflow==1.14.0
19
20
20
21
# Install pycocoapi
Original file line number Diff line number Diff line change @@ -9,14 +9,15 @@ RUN apt-get install -y python3 && apt-get install -y python3-pip
9
9
RUN update-alternatives --install /usr/bin/python python /usr/bin/python3.6 1
10
10
11
11
# Installing the Tensorflow Object Detection API (https://gilberttanner.com/blog/installing-the-tensorflow-object-detection-api)
12
- RUN git clone --depth 1 https://github.com/tensorflow/models.git
12
+ RUN git clone --depth 1 -b r1.13.0 https://github.com/tensorflow/models.git
13
13
14
14
# Install object detection api dependencies
15
15
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y protobuf-compiler python3-pil python3-lxml python3-tk && \
16
16
pip3 install Cython && \
17
17
pip3 install contextlib2 && \
18
18
pip3 install jupyter && \
19
19
pip3 install matplotlib && \
20
+ pip3 install Pillow && \
20
21
pip3 install tensorflow==1.14.0
21
22
22
23
# Install pycocoapi
You can’t perform that action at this time.
0 commit comments