Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/websmurf/tauri-builder
https://github.com/websmurf/tauri-builder
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/websmurf/tauri-builder
- Owner: websmurf
- Created: 2024-10-10T13:18:55.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-10-30T15:42:41.000Z (17 days ago)
- Last Synced: 2024-10-30T16:36:04.297Z (17 days ago)
- Language: Dockerfile
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Quick reference
* Maintained by: [Websmurf](https://github.com/websmurf)
* Where to get help: [Discussions](https://github.com/websmurf/tauri-builder/discussions)# Supported tags and respective Dockerfile links
* [1.0.3](https://github.com/websmurf/tauri-builder/blob/9a1ab3a8005ec39110ffa26ed37ea31cd0f36ff8/Dockerfile)
* [1.1.0](https://github.com/websmurf/tauri-builder/blob/main/Dockerfile)# Quick reference (cont.)
* Where to file issues: https://github.com/websmurf/tauri-builder/issues
# What is Tauri?
[Tauri](https://tauri.app/) is can be used to create small, fast, secure, cross-platform applications
This container is used to build windows versions of Tauri applications through docker# How to use this image
Go to the root folder of your Tauri project en run the following command to enter the container:
docker run --rm -it -v $(pwd):/io -w /io websmurf/tauri-builder:1.1.0 bash
Then run the following commands to build the windows version of your Tauri application:
rm -Rf node_modules
yarn install
yarn tauri build --runner cargo-xwin --target x86_64-pc-windows-msvc# Known issues
Sometimes the build will fail with the error "Error: response body closed before all bytes were read",
this means that downloading the SDK data fails. You can simply retry the build until it is successful.