Skip to content

Commit 530368d

Browse files
Fix enptrypoint.sh path in Dockerfile
1 parent 2a49afd commit 530368d

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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
@@ -40,7 +40,7 @@ jobs:
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

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ RUN npm prune --omit=dev
3131
# Final image
3232
FROM 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
3535
RUN 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'
5252
WORKDIR /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"]

0 commit comments

Comments
 (0)