mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-04 18:55:05 +00:00
12 lines
292 B
Bash
Executable file
12 lines
292 B
Bash
Executable file
#!/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/.
|