eee0743413
Add ubuntu-slim image definition
10 lines
150 B
Bash
10 lines
150 B
Bash
#!/bin/bash
|
|
# /opt/entrypoint.sh
|
|
|
|
# Load environment variables from file
|
|
set -a
|
|
source /etc/environment
|
|
set +a
|
|
|
|
# Execute the actual command
|
|
exec "$@" |