From 787bcca56bbcae0abf2737bfa06a14655c884de7 Mon Sep 17 00:00:00 2001 From: "Rick(Rugui) Chen" Date: Mon, 14 Aug 2023 16:25:56 -0400 Subject: [PATCH] fix client gunicorn issue --- step2/src/client/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/step2/src/client/Dockerfile b/step2/src/client/Dockerfile index c3bf285..4fc7002 100644 --- a/step2/src/client/Dockerfile +++ b/step2/src/client/Dockerfile @@ -24,6 +24,7 @@ RUN poetry build FROM base as runner COPY --from=builder /src/dist/*.whl / RUN pip install /*.whl && rm /*.whl +RUN pip install markupsafe==2.0.1 COPY ./config.py /config.py EXPOSE 8080