From a1cca0363f67e39f5ae2561fda5cc10a158500f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauri=20V=C3=B5sandi?= Date: Thu, 15 Dec 2022 06:59:48 +0200 Subject: [PATCH] Work around 'choice' is not callable error in v6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 95ee15c..a6a5c61 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM python:3-alpine -RUN pip install flake8 flake8-typing-imports flake8-quotes +RUN pip install flake8==5.0.4 flake8-typing-imports flake8-quotes ADD .flake8 /config/flake8.ini WORKDIR /apps ENTRYPOINT ["flake8", "--config", "/config/flake8.ini"]