mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 03:05:16 +00:00
13 lines
292 B
Bash
13 lines
292 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
export DOCKER_BUILDKIT=1
|
||
|
docker build . -t smoo-client-build
|
||
|
docker run --rm \
|
||
|
-u $(id -u):$(id -g) \
|
||
|
-v "/$PWD/":/app/ \
|
||
|
smoo-client-build \
|
||
|
;
|
||
|
docker rmi smoo-client-build
|
||
|
|
||
|
cp -r ./romfs/ ./starlight_patch_*/atmosphere/contents/0100000000010000/.
|