From 400842a378e2c47ed661b8c6f8b62066401d9c69 Mon Sep 17 00:00:00 2001 From: Pal Kerecsenyi Date: Sat, 20 Apr 2024 14:43:14 +0100 Subject: [PATCH] Add host to dockerfile args --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 78b4423..acfe75a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,4 +10,4 @@ RUN poetry install --no-root COPY main.py . -CMD ["poetry", "run", "sanic", "--port", "8080", "main"] +CMD ["poetry", "run", "sanic", "--port", "8080", "--host", "0.0.0.0", "main"]