From a4e43ef264d230302af4bcb09c21bbcb1ca61c1a Mon Sep 17 00:00:00 2001 From: Joscha Schmiedt <joscha@schmiedt.dev> Date: Tue, 12 Mar 2024 21:13:40 +0100 Subject: [PATCH] Install mypy via pip instead of apt --- unittests/docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unittests/docker/Dockerfile b/unittests/docker/Dockerfile index 4ed467a4..51a9006f 100644 --- a/unittests/docker/Dockerfile +++ b/unittests/docker/Dockerfile @@ -7,9 +7,9 @@ RUN apt-get update && \ apt-get install -y \ pylint3 python3-pip tox git \ curl pycodestyle \ - python3-sphinx python3-mypy + python3-sphinx ARG COMMIT="dev" # TODO Rename to linkahead RUN git clone -b dev https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git linkahead-pylib && \ cd linkahead-pylib && git checkout $COMMIT && pip3 install . -RUN pip3 install recommonmark sphinx-rtd-theme +RUN pip3 install recommonmark sphinx-rtd-theme mypy -- GitLab