From 02449026b95b98b0797a8d13644e2f58a82a5430 Mon Sep 17 00:00:00 2001 From: Shyim Date: Sun, 25 Jan 2026 10:35:15 +0100 Subject: [PATCH] fix: add expose port 3010 in Dockerfile (#14293) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Expose is requierd for automatic port finding with load balancers like Traefik without having to configure the port explict. > error="service \"affine-affine\" error: port is missing" container=affine-affine-a76ca4362da101be5a53279db7aac67595a9df0783b0026efc3e5431009cbd66 ## Summary by CodeRabbit * **Chores** * Updated deployment configuration for container port exposure. ✏️ Tip: You can customize this high-level summary in your review settings. --- .github/deployment/node/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/deployment/node/Dockerfile b/.github/deployment/node/Dockerfile index 9555c940c..0585da280 100644 --- a/.github/deployment/node/Dockerfile +++ b/.github/deployment/node/Dockerfile @@ -13,4 +13,6 @@ RUN apt-get update && \ # Enable jemalloc by preloading the library ENV LD_PRELOAD=libjemalloc.so.2 +EXPOSE 3010 + CMD ["node", "./dist/main.js"]