diff --git a/Dockerfile b/Dockerfile index 806b217..6fb516c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,5 +7,6 @@ COPY . . EXPOSE 8080 -# The wws image already has an entrypoint, just use the path -CMD ["/app"] +# Run wws with explicit host binding to 0.0.0.0 for container networking +ENTRYPOINT ["wws"] +CMD ["--host", "0.0.0.0", "/app"]