File tree Expand file tree Collapse file tree 6 files changed +10
-27
lines changed Expand file tree Collapse file tree 6 files changed +10
-27
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ RUN apt-get update \
11
11
libx11-xcb1 \
12
12
git \
13
13
gcc \
14
- mono-mcs \
15
14
libavcodec-extra \
16
15
ffmpeg \
17
16
curl \
Original file line number Diff line number Diff line change 1
1
# Get base image
2
2
FROM python:3.10.17-slim-bookworm
3
3
4
- # Set to install things in non-interactive mode
5
- ENV DEBIAN_FRONTEND noninteractive
6
-
7
4
# Install system wide software
8
5
RUN apt-get update \
9
6
&& apt-get install -y \
@@ -16,7 +13,6 @@ RUN apt-get update \
16
13
libx11-xcb1 \
17
14
git \
18
15
gcc \
19
- mono-mcs \
20
16
libavcodec-extra \
21
17
ffmpeg \
22
18
curl \
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ RUN apt-get update \
11
11
libx11-xcb1 \
12
12
git \
13
13
gcc \
14
- mono-mcs \
15
14
libavcodec-extra \
16
15
ffmpeg \
17
16
curl \
@@ -28,7 +27,7 @@ RUN apt-get update \
28
27
# Install necessary libraries for goturn
29
28
RUN pip install --ignore-installed torch==1.11.0 torchaudio==0.11.0 torchvision==0.12.0 --index-url https://download.pytorch.org/whl/cpu
30
29
RUN pip install --ignore-installed --no-deps pytorch_lightning==0.7.1 torch_lr_finder==0.2.1 torchsummary==1.5.1
31
- RUN pip install tensorflow==2.9 scikit-learn==1.6.1 pytest~=6.2.5 pytest-cov~=4.1.0
30
+ RUN pip install tensorflow==2.9 scikit-learn==1.6.1 pytest~=6.2.5 pytest-cov~=4.1.0 matplotlib==3.9.4
32
31
33
32
RUN git clone https://github.com/nrupatunga/goturn-pytorch.git /tmp/goturn-pytorch
34
33
# RUN cd /tmp/goturn-pytorch && pip install -r requirements.txt
Original file line number Diff line number Diff line change 1
- # Get base from a tensorflow image
2
- FROM tensorflow/tensorflow:2.13.0
3
-
4
- # Set to install things in non-interactive mode
5
- ENV DEBIAN_FRONTEND noninteractive
1
+ # Get base image
2
+ FROM python:3.10.17-slim-bookworm
6
3
7
4
# Install system wide softwares
8
5
RUN apt-get update \
@@ -11,25 +8,21 @@ RUN apt-get update \
11
8
libx11-xcb1 \
12
9
git \
13
10
gcc \
14
- mono-mcs \
15
11
libavcodec-extra \
16
12
ffmpeg \
17
13
curl \
18
14
libsndfile-dev \
19
15
libsndfile1 \
20
16
wget \
21
17
unzip \
18
+ software-properties-common \
19
+ gnupg2 \
20
+ lsb-release \
22
21
&& apt-get clean all \
23
22
&& rm -r /var/lib/apt/lists/*
24
23
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
24
+ RUN pip install --upgrade pip setuptools wheel
25
+ RUN pip install tensorflow==2.19.0
33
26
34
27
# Install necessary libraries for tensorflow faster rcnn
35
28
RUN mkdir TensorFlow
@@ -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 llvmlite numba==0.56.4 pytest-cov
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ RUN apt-get update \
8
8
libx11-xcb1 \
9
9
git \
10
10
gcc \
11
- mono-mcs \
12
11
cmake \
13
12
libavcodec-extra \
14
13
ffmpeg \
Original file line number Diff line number Diff line change @@ -119,9 +119,9 @@ def get_version(rel_path):
119
119
"Intended Audience :: Education" ,
120
120
"Intended Audience :: Science/Research" ,
121
121
"License :: OSI Approved :: MIT License" ,
122
- "Programming Language :: Python :: 3.9" ,
123
122
"Programming Language :: Python :: 3.10" ,
124
123
"Programming Language :: Python :: 3.11" ,
124
+ "Programming Language :: Python :: 3.12" ,
125
125
"Topic :: Software Development :: Libraries" ,
126
126
"Topic :: Software Development :: Libraries :: Python Modules" ,
127
127
"Topic :: Scientific/Engineering :: Artificial Intelligence" ,
You can’t perform that action at this time.
0 commit comments