Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"]
Loading