File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,12 +24,12 @@ jobs:
2424 password : ${{ secrets.GITHUB_TOKEN }}
2525
2626 - name : Checkout project
27- uses : actions/checkout@v4
27+ uses : actions/checkout@v6
2828
2929 - name : Setup Node
30- uses : actions/setup-node@v4
30+ uses : actions/setup-node@v5
3131 with :
32- node-version : 20 .x
32+ node-version : 22 .x
3333
3434 - name : Get version from package.json
3535 id : package-version
4040 echo "Project Version: $VERSION"
4141
4242 - name : Set up QEMU
43- uses : docker/setup-qemu-action@v3
43+ uses : docker/setup-qemu-action@v4
4444 id : qemu
4545
4646 - name : Setup Docker buildx
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ RUN npm prune --omit=dev
3131# Final image
3232FROM node:20-bookworm-slim AS cln-app-final
3333
34- # Install jq for JSON parsing in entrypoint.sh
34+ # Install jq for JSON parsing in scripts/ entrypoint.sh
3535RUN apt-get update && apt-get install -y jq socat
3636
3737# 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
5151# Change directory to '/app'
5252WORKDIR /app
5353
54- COPY entrypoint.sh entrypoint.sh
54+ COPY scripts/ entrypoint.sh scripts/ entrypoint.sh
5555
56- ENTRYPOINT ["bash" , "./entrypoint.sh" ]
56+ ENTRYPOINT ["bash" , "./scripts/ entrypoint.sh" ]
You can’t perform that action at this time.
0 commit comments