mirror of
https://github.com/itzg/docker-minecraft-server
synced 2025-01-24 09:45:02 +00:00
5 lines
299 B
Bash
Executable file
5 lines
299 B
Bash
Executable file
#!/bin/bash
|
|
|
|
[[ $(uname -m) == "aarch64" ]] && curl -sL -o /bin/gosu https://github.com/tianon/gosu/releases/download/1.14/gosu-arm64 && chmod +x /bin/gosu
|
|
[[ $(uname -m) == "x86_64" ]] && curl -sL -o /bin/gosu https://github.com/tianon/gosu/releases/download/1.14/gosu-amd64 && chmod +x /bin/gosu
|
|
|