7 lines
254 B
Bash
7 lines
254 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
docker run --rm -v "$(pwd)":/code \
|
||
|
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/code/target \
|
||
|
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
|
||
|
cosmwasm/workspace-optimizer:0.10.7
|