From d6971acb66b22110612fe9617a2b4006845ef62f Mon Sep 17 00:00:00 2001 From: "Jason C. Leach" Date: Wed, 22 Nov 2023 16:33:46 -0800 Subject: [PATCH] feat: add fixtures to image (#9) Signed-off-by: Jason C. Leach --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 0169720..990b648 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,5 +23,6 @@ RUN curl -ILv https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 WORKDIR /opt/controller COPY src /opt/controller/ +COPY fixtures /opt/ ENTRYPOINT ["gunicorn", "-b", "0.0.0.0:5000", "controller:server"]