7 lines
60 B
Bash
7 lines
60 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
cp /app/frontend/* /frontend
|
|
|
|
exec "$@"
|