Dockerfile installs from requirements.txt
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
This commit is contained in:
parent
484e481d88
commit
74875553d5
3 changed files with 4 additions and 27 deletions
|
@ -2,7 +2,7 @@ FROM python:3.8
|
||||||
|
|
||||||
RUN apt update -y
|
RUN apt update -y
|
||||||
|
|
||||||
RUN apt install libgl1 -y
|
RUN apt install libgl1 -y # or install opencv opencv-python-headless instead
|
||||||
|
|
||||||
RUN pip3 install \
|
RUN pip3 install \
|
||||||
torch==1.10.2+cpu \
|
torch==1.10.2+cpu \
|
||||||
|
|
|
@ -8,6 +8,6 @@ services:
|
||||||
image: noble/autophotographer
|
image: noble/autophotographer
|
||||||
volumes:
|
volumes:
|
||||||
# Source of project
|
# Source of project
|
||||||
- ./src:/src
|
- .:/mmp-osp1
|
||||||
# Location of dataset
|
# Location of dataset
|
||||||
- $HOME/Documents/Datasets:/datasets
|
- $HOME/Documents/Datasets:/datasets
|
|
@ -1,29 +1,6 @@
|
||||||
cycler==0.11.0
|
|
||||||
fonttools==4.33.2
|
|
||||||
imageio==2.17.0
|
|
||||||
joblib==1.1.0
|
|
||||||
kiwisolver==1.4.2
|
|
||||||
matplotlib==3.5.1
|
|
||||||
networkx==2.8
|
|
||||||
numpy==1.22.3
|
|
||||||
opencv-python==4.5.5.64
|
opencv-python==4.5.5.64
|
||||||
packaging==21.3
|
matplotlib==3.5.1
|
||||||
pandas==1.4.2
|
pandas==1.4.2
|
||||||
Pillow==9.0.1
|
|
||||||
pyparsing==3.0.8
|
|
||||||
python-dateutil==2.8.2
|
|
||||||
pytz==2022.1
|
|
||||||
PyWavelets==1.3.0
|
|
||||||
PyYAML==6.0
|
PyYAML==6.0
|
||||||
scikit-image==0.19.2
|
scikit-image==0.19.2
|
||||||
scikit-learn==1.0.2
|
tqdm==4.64.0
|
||||||
scipy==1.8.0
|
|
||||||
six==1.16.0
|
|
||||||
sklearn==0.0
|
|
||||||
threadpoolctl==3.1.0
|
|
||||||
tifffile==2022.4.22
|
|
||||||
torch==1.10.2+cpu
|
|
||||||
torchaudio==0.10.2+cpu
|
|
||||||
torchvision==0.11.3+cpu
|
|
||||||
tqdm==4.64.0
|
|
||||||
typing_extensions==4.1.1
|
|
Reference in a new issue