From 59b0fbcc735f01c6e44078be7eec8db2c5ff9ae7 Mon Sep 17 00:00:00 2001 From: anonpenguin Date: Wed, 2 Jul 2025 05:30:34 +0300 Subject: [PATCH] fix: Override entrypoint in Dockerfile to ensure proper startup of IPFS daemon --- .../shared/infrastructure/docker/Dockerfile.bootstrap | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/real-integration/shared/infrastructure/docker/Dockerfile.bootstrap b/tests/real-integration/shared/infrastructure/docker/Dockerfile.bootstrap index 7df1e8e..9021087 100644 --- a/tests/real-integration/shared/infrastructure/docker/Dockerfile.bootstrap +++ b/tests/real-integration/shared/infrastructure/docker/Dockerfile.bootstrap @@ -13,5 +13,6 @@ USER ipfs # Expose IPFS ports EXPOSE 4001 5001 8080 -# Start IPFS daemon with custom config -CMD ["/usr/local/bin/bootstrap-config.sh"] \ No newline at end of file +# Override the kubo entrypoint and start IPFS daemon with custom config +ENTRYPOINT [] +CMD ["sh", "/usr/local/bin/bootstrap-config.sh"]