From 30286a4c70a058321b7d78ea29609a89f35f3150 Mon Sep 17 00:00:00 2001 From: Benjamin Bertrand <benjamin.bertrand@esss.se> Date: Wed, 13 Nov 2019 13:18:54 +0100 Subject: [PATCH] Fix deprecation warning WARNING: 'conda clean --source-cache' is deprecated. --- PythonServer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PythonServer/Dockerfile b/PythonServer/Dockerfile index cdb1d4f..872d777 100644 --- a/PythonServer/Dockerfile +++ b/PythonServer/Dockerfile @@ -11,7 +11,7 @@ RUN conda update -n base conda \ && conda config --system --set channel_alias https://artifactory.esss.lu.se/artifactory/api/conda \ && conda config --system --set use_only_tar_bz2 true \ && conda env create -n pos -f /app/environment.yml \ - && conda clean -tipsy + && conda clean -ay COPY --chown=csi:csi pos-python-server.py /app/ # Make sure the /app directory is owned by csi -- GitLab