From af7f58dd1ea70a28dc992da679ae478a6e980aea Mon Sep 17 00:00:00 2001 From: jasquat Date: Mon, 6 Mar 2023 14:29:55 -0500 Subject: [PATCH] fixed pip install command --- spiffworkflow-backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spiffworkflow-backend/Dockerfile b/spiffworkflow-backend/Dockerfile index 9c27426d8..452261717 100644 --- a/spiffworkflow-backend/Dockerfile +++ b/spiffworkflow-backend/Dockerfile @@ -19,7 +19,7 @@ RUN apt-get update \ # Setup image for installing Python dependencies. FROM base AS setup -RUN pip install poetry=1.2.2 +RUN pip install poetry==1.2.2 RUN useradd _gunicorn --no-create-home --user-group RUN apt-get update \