forked from pytorch/ignite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile.vision
More file actions
19 lines (17 loc) · 817 Bytes
/
Dockerfile.vision
File metadata and controls
19 lines (17 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Dockerfile.vision
FROM pytorchignite/base:latest
# Install opencv dependencies
RUN apt-get update && \
apt-get -y install --no-install-recommends libglib2.0 \
libsm6 \
libxext6 \
libxrender-dev \
libgl1-mesa-glx && \
rm -rf /var/lib/apt/lists/*
# Ignite vision dependencies
RUN pip install --upgrade --no-cache-dir albumentations \
image-dataset-viz \
numpy \
opencv-python-headless \
py_config_runner \
clearml