From f4cc542d4b5149ab78bac2e889e564c7550f2244 Mon Sep 17 00:00:00 2001 From: yhirose Date: Tue, 26 Aug 2025 22:17:54 -0400 Subject: [PATCH] Fix Dockerfile problem with CMD --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 67aa028..3495b42 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,4 +10,4 @@ COPY docker/html/index.html /html/index.html EXPOSE 80 ENTRYPOINT ["/server"] -CMD ["0.0.0.0", "80", "/", "/html"] +CMD ["--host", "0.0.0.0", "--port", "80", "--mount", "/:./html"]