mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-06-22 15:35:03 +00:00
13 lines
232 B
Makefile
13 lines
232 B
Makefile
vite-build:
|
|
npx tsc
|
|
npx vite build
|
|
|
|
vite-dockerize:
|
|
make vite-build
|
|
bash -c "cp ../package-lock.json ./"
|
|
docker build . -t stirling-pdf:latest
|
|
bash -c "rm ./package-lock.json"
|
|
docker image prune
|
|
|
|
tauri-build:
|
|
npx tauri build
|