mirror of
https://github.com/penpot/penpot.git
synced 2025-01-10 08:50:57 -05:00
8 lines
212 B
Bash
Executable file
8 lines
212 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
export PATH=/usr/lib/jvm/openjdk16/bin:/usr/local/nodejs/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin
|
|
|
|
set -e
|
|
usermod -u ${EXTERNAL_UID:-1000} penpot
|
|
|
|
exec "$@"
|