mirror of
https://github.com/RoboSats/robo-identities.git
synced 2026-01-20 21:34:16 +00:00
27 lines
739 B
YAML
27 lines
739 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 -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 -o ./target build --release
|