Files
its-mytabs/extra/docker-entrypoint.sh
2025-09-30 16:04:08 +08:00

8 lines
156 B
Bash

#!/bin/sh
# Change the user/group of /app/data to match deno user
chown -R deno:deno /app/data
# Execute the command as the deno user
exec gosu deno "$@"