From eeb15c4c1bd6ed36073562a5b8990a6e032403ab Mon Sep 17 00:00:00 2001 From: ShahanaFarooqui Date: Wed, 8 Apr 2026 14:23:31 -0700 Subject: [PATCH] Fix enptrypoint.sh path in Dockerfile --- .github/workflows/release.yml | 8 ++++---- Dockerfile | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ee955ff0..ee9ce214 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,12 +24,12 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Checkout project - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: - node-version: 20.x + node-version: 22.x - name: Get version from package.json id: package-version @@ -40,7 +40,7 @@ jobs: echo "Project Version: $VERSION" - name: Set up QEMU - uses: docker/setup-qemu-action@v3 + uses: docker/setup-qemu-action@v4 id: qemu - name: Setup Docker buildx diff --git a/Dockerfile b/Dockerfile index 2e3e27e9..2af7fb77 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ RUN npm prune --omit=dev # Final image FROM node:20-bookworm-slim AS cln-app-final -# Install jq for JSON parsing in entrypoint.sh +# Install jq for JSON parsing in scripts/entrypoint.sh RUN apt-get update && apt-get install -y jq socat # Copy built code from build stages to '/app/frontend' directory @@ -51,6 +51,6 @@ COPY --from=cln-app-builder /app/node_modules /app/node_modules # Change directory to '/app' WORKDIR /app -COPY entrypoint.sh entrypoint.sh +COPY scripts/entrypoint.sh scripts/entrypoint.sh -ENTRYPOINT ["bash", "./entrypoint.sh"] +ENTRYPOINT ["bash", "./scripts/entrypoint.sh"]