8 lines
96 B
Bash
Executable File
8 lines
96 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
mkdir -p /app/data
|
|
chown -R nextjs:nodejs /app/data
|
|
|
|
exec su-exec nextjs "$@"
|