mirror of
https://github.com/RoboSats/robo-identities.git
synced 2025-07-18 08:43:17 +00:00
27 lines
729 B
YAML
27 lines
729 B
YAML
version: '3.4'
|
|
|
|
services:
|
|
rust_wasm:
|
|
build:
|
|
context: .
|
|
dockerfile: ./robo-identities-wasm/Dockerfile
|
|
volumes:
|
|
- ./builds/wasm/:/app/robo-identities-wasm/pkg/:rw
|
|
command: wasm-pack build
|
|
rust_java_robonames:
|
|
build:
|
|
context: .
|
|
dockerfile: ./Dockerfile
|
|
target: robonames
|
|
volumes:
|
|
- ./builds/java/robonames:/root/target/:rw
|
|
command: cargo ndk -t armeabi-v7a -t arm64-v8a -t x86_64 -o ./target build --release
|
|
rust_java_robohash:
|
|
build:
|
|
context: .
|
|
dockerfile: ./Dockerfile
|
|
target: robohash
|
|
volumes:
|
|
- ./builds/java/robohash:/root/target/:rw
|
|
command: cargo ndk -t armeabi-v7a -t arm64-v8a -t x86_64 -o ./target build --release
|