13 lines
298 B
Bash
13 lines
298 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
UPLOAD_DIR="${GC_VERIFICATION_UPLOAD_DIR:-/app/data/verification-images}"
|
|
mkdir -p "$UPLOAD_DIR"
|
|
chown -R spring:spring "$UPLOAD_DIR"
|
|
|
|
exec su-exec spring java \
|
|
-XX:+UseContainerSupport \
|
|
-XX:MaxRAMPercentage=75.0 \
|
|
-Djava.security.egd=file:/dev/./urandom \
|
|
-jar app.jar
|