We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49e9171 commit 0ba4b9dCopy full SHA for 0ba4b9d
Dockerfile
@@ -1,6 +1,13 @@
1
FROM pytorch/pytorch:latest
2
3
-RUN /opt/conda/bin/conda install -y nodejs Cython tensorflow pandas scikit-learn matplotlib seaborn jupyter jupyterlab && \
+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 && \
11
/opt/conda/bin/conda install -c conda-forge tensorboardx && \
12
/opt/conda/bin/conda clean -ya
13
0 commit comments