From 317abf51fcb93c2c8be96f1eb51b6c12690da48e Mon Sep 17 00:00:00 2001 From: Johan Herland Date: Tue, 14 May 2024 13:13:47 +0200 Subject: [PATCH] Dockerfile: Use $VIRTUAL_ENV instead of duplicating its value --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6a6a703..d030ab8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,4 +8,4 @@ RUN $VIRTUAL_ENV/bin/pip install --no-cache-dir --upgrade pip setuptools \ ENV PATH="${VIRTUAL_ENV}/bin:$PATH" -CMD ["/opt/venv/bin/fawltydeps"] +CMD ["${VIRTUAL_ENV}/bin/fawltydeps"]