From 5b615dbe781241313f75e37d0000844155a56a75 Mon Sep 17 00:00:00 2001 From: Goldy <66202304+THEGOLDENPRO@users.noreply.github.com> Date: Sat, 24 Aug 2024 16:26:18 +0100 Subject: [PATCH] fix(docker): "ENV key=value" should be used instead of legacy "ENV key value" format --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9823ebb..854d55d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +17,6 @@ RUN cd ./assets/git_repo && git config features.manyFiles 1 RUN pip install . EXPOSE 8000 -ENV LISTEN_PORT = 8000 +ENV LISTEN_PORT=8000 CMD ["uvicorn", "api.main:app", "--host=0.0.0.0", "--proxy-headers"] \ No newline at end of file