mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-18 19:06:10 +00:00
f1182bef74
* docker/Dockerfile: Reduce layer count, restructure * Docker: Add UID/GID mapping
10 lines
247 B
Bash
Executable File
10 lines
247 B
Bash
Executable File
#!/bin/bash
|
|
USERNAME="r2"
|
|
|
|
echo "Cutter: Starting with UID:GID $LOCAL_USER_ID:$LOCAL_GROUP_ID"
|
|
usermod -u $LOCAL_USER_ID $USERNAME
|
|
usermod -g $LOCAL_GROUP_ID $USERNAME
|
|
export HOME=/home/$USERNAME
|
|
|
|
exec gosu $USERNAME "/opt/cutter/build/Cutter" $@
|