We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 196c4b1 commit a653f16Copy full SHA for a653f16
Dockerfile
@@ -6,7 +6,10 @@ USER ${NB_USER}
6
7
ADD environment.yml environment.yml
8
9
-RUN conda env update --prefix /srv/conda/envs/notebook --file environment.yml
+RUN conda env update --prefix /srv/conda/envs/notebook --file environment.yml \
10
+ && find /srv/conda/ -follow -type f -name '*.a' -delete \
11
+ && find /srv/conda/ -follow -type f -name '*.js.map' -delete \
12
+ && /srv/conda/bin/conda clean -afy
13
RUN conda list
14
15
COPY --chown=${NB_USER}:${NB_USER} image-tests /srv/repo/image-tests
0 commit comments