File tree 1 file changed +3
-13
lines changed
.github/actions/tfv2-faster-rcnn 1 file changed +3
-13
lines changed Original file line number Diff line number Diff line change 1
1
# Get base from a tensorflow image
2
2
FROM tensorflow/tensorflow:2.13.0
3
3
4
+ ENV MONO_TLS_PROVIDER=legacy
5
+
4
6
# Set to install things in non-interactive mode
5
7
ENV DEBIAN_FRONTEND noninteractive
6
8
@@ -22,15 +24,6 @@ RUN apt-get update \
22
24
&& apt-get clean all \
23
25
&& rm -r /var/lib/apt/lists/*
24
26
25
- RUN wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
26
- RUN bash Miniconda3-latest-Linux-x86_64.sh -b -p /miniconda
27
- RUN /miniconda/bin/conda install --yes \
28
- astropy \
29
- matplotlib \
30
- pandas \
31
- scikit-learn \
32
- scikit-image
33
-
34
27
# Install necessary libraries for tensorflow faster rcnn
35
28
RUN mkdir TensorFlow
36
29
RUN cd TensorFlow && git clone https://github.com/tensorflow/models
@@ -40,7 +33,4 @@ RUN cd TensorFlow/models/research && /TensorFlow/protobuf/bin/protoc object_dete
40
33
RUN cd TensorFlow/models/research && cp object_detection/packages/tf2/setup.py .
41
34
RUN cd TensorFlow/models/research && python -m pip install .
42
35
43
- RUN pip install tqdm
44
- RUN pip install requests
45
- RUN pip install numba==0.50.0
46
- RUN pip install pytest-cov
36
+ RUN pip install tqdm requests numba==0.50 pytest-cov numpy==1.23.5
You can’t perform that action at this time.
0 commit comments