From addba64df5c3285ac56addc52125d455df9d780d Mon Sep 17 00:00:00 2001 From: CJ_Clippy Date: Fri, 15 Aug 2025 10:21:50 -0800 Subject: [PATCH] fix wget usage error --- .gitea/workflows/tests.yaml | 5 +++++ services/our/Dockerfile | 2 +- services/our/package.json | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/tests.yaml b/.gitea/workflows/tests.yaml index 24d75ca..a593e4d 100644 --- a/.gitea/workflows/tests.yaml +++ b/.gitea/workflows/tests.yaml @@ -19,6 +19,11 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + - name: Install canvas dependencies + run: | + apt-get update + apt-get install -y libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev pkg-config + - name: Setup nodejs uses: actions/setup-node@v4 with: diff --git a/services/our/Dockerfile b/services/our/Dockerfile index 6839f0c..01b5d0c 100644 --- a/services/our/Dockerfile +++ b/services/our/Dockerfile @@ -37,7 +37,7 @@ ENV PATH="$PATH:/app/whisper.cpp/build/bin" ENV LD_LIBRARY_PATH="/app/whisper.cpp/build/src:/app/whisper.cpp/build/ggml/src:/usr/local/lib:/usr/lib" # Install b2-cli -RUN wget https://github.com/Backblaze/B2_Command_Line_Tool/releases/download/v4.4.1/b2-linux -o /usr/local/bin/b2 && chmod +x /usr/local/bin/b2 +RUN wget https://github.com/Backblaze/B2_Command_Line_Tool/releases/download/v4.4.1/b2-linux -O /usr/local/bin/b2 && chmod +x /usr/local/bin/b2 # Copy and install dependencies COPY package.json package-lock.json ./ diff --git a/services/our/package.json b/services/our/package.json index 00be131..eef11f8 100644 --- a/services/our/package.json +++ b/services/our/package.json @@ -1,7 +1,7 @@ { "name": "futureporn", "private": true, - "version": "2.4.7", + "version": "2.4.8", "type": "module", "scripts": { "dev": "concurrently npm:dev:serve npm:dev:build npm:dev:worker npm:dev:compose npm:dev:sftp",