robo-identities/docker-compose.yml
2024-07-09 00:49:24 +02:00

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