diff --git a/Dockerfile b/Dockerfile index f653e2b..fcd6885 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,9 @@ FROM node:21 # https://github.com/rust-lang/rustup/issues/1085 RUN RUSTUP_URL="https://sh.rustup.rs" \ && curl --silent --show-error --location --fail --retry 3 --proto '=https' --tlsv1.2 --output /tmp/rustup-linux-install.sh $RUSTUP_URL \ - && bash /tmp/rustup-linux-install.sh -y + && bash /tmp/rustup-linux-install.sh -y \ + && curl https://rclone.org/install.sh --output /tmp/rclone-install.sh \ + && bash /tmp/rclone-install.sh ENV PATH=/root/.cargo/bin:$PATH diff --git a/app/package.json b/app/package.json index 74de42a..c0c298b 100644 --- a/app/package.json +++ b/app/package.json @@ -5,7 +5,7 @@ "type": "module", "scripts": { "dev": "vite dev", - "build": "vite build", + "build": "svelte-kit sync && vite build", "test": "vitest", "preview": "vite preview", "tauri:dev": "tauri dev",