From 83bfcc99cd7ed6310298560d9497a4e0b05236f0 Mon Sep 17 00:00:00 2001 From: B13nch3n <b13nch3n_01@theb-si.de> Date: Wed, 5 Oct 2022 15:16:50 +0200 Subject: [PATCH] Fix development version of Docker image --- validation/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validation/Dockerfile b/validation/Dockerfile index fb265fe..725afb4 100644 --- a/validation/Dockerfile +++ b/validation/Dockerfile @@ -134,7 +134,7 @@ RUN set -e pipefail; \ # switch to development version via build-arg ARG ADD_DEV RUN set -e pipefail; \ - if test xYES == x`echo ${ADD_DEV} | tr '[:lower:]' '[:upper:]'`; then \ + if test xYES = x`echo ${ADD_DEV} | tr '[:lower:]' '[:upper:]'`; then \ apk add bash emacs gcc build-base; \ /usr/local/bin/python -m pip install pylint black; \ apk del gcc build-base; \ -- GitLab