diff options
author | Elizabeth Hunt <me@liz.coffee> | 2025-06-14 19:08:59 -0700 |
---|---|---|
committer | Elizabeth Hunt <me@liz.coffee> | 2025-06-14 19:08:59 -0700 |
commit | f4fa90f8bf2b26d3129c9425d7d379bf4c766298 (patch) | |
tree | 50ba7a1bc7c0dd079e8a0e095191a6bef260e3f2 | |
parent | c31e481a0776b7b696cb13ff6260831b0d527018 (diff) | |
download | ci-f4fa90f8bf2b26d3129c9425d7d379bf4c766298.tar.gz ci-f4fa90f8bf2b26d3129c9425d7d379bf4c766298.zip |
Fix ports
-rw-r--r-- | server/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/Dockerfile b/server/Dockerfile index 4311f9c..02ff44c 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -4,5 +4,5 @@ FROM oci.liz.coffee/emprespresso/ci_base:release AS server HEALTHCHECK --interval=10s --retries=3 --start-period=3s \ CMD [ "curl --fail http://localhost:9000/health" ] -CMD [ "/app/mod.ts --run-server true --port 9000" ] +CMD [ "/app/mod.ts --run-server --port=9000" ] # -- </ci_server> -- |