Skip to content

Commit 0ba4b9d

Browse files
authored
Add opencv
1 parent 49e9171 commit 0ba4b9d

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

Dockerfile

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
FROM pytorch/pytorch:latest
22

3-
RUN /opt/conda/bin/conda install -y nodejs Cython tensorflow pandas scikit-learn matplotlib seaborn jupyter jupyterlab && \
3+
RUN apt-get update && apt-get install -y --no-install-recommends \
4+
libsm6 \
5+
libxext6 \
6+
libxrender-dev \
7+
ffmpeg && \
8+
rm -rf /var/lib/apt/lists/*
9+
10+
RUN /opt/conda/bin/conda install -y nodejs opencv Cython tensorflow pandas scikit-learn matplotlib seaborn jupyter jupyterlab && \
411
/opt/conda/bin/conda install -c conda-forge tensorboardx && \
512
/opt/conda/bin/conda clean -ya
613

0 commit comments

Comments
 (0)