From 8e21cd2e125ad8cd00f08ecdaeaeaa36a853c0ff Mon Sep 17 00:00:00 2001 From: Donkie Date: Sun, 14 May 2023 18:59:48 +0200 Subject: [PATCH] Updated Dockerfile command --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c90786b..ff1a89a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,4 +31,5 @@ COPY --chown=app:app --from=client-builder /client/dist /home/app/spoolman/clien # Run command EXPOSE 8000 -CMD ["uvicorn", "spoolman.main:app", "--host", "0.0.0.0", "--port", "8000"] +ENTRYPOINT ["uvicorn", "spoolman.main:app"] +CMD ["--host", "0.0.0.0", "--port", "8000"]