This repository has been archived on 2024-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
reactive-resume-docker/entrypoint.sh

11 lines
101 B
Bash
Raw Normal View History

2023-01-04 14:08:00 +01:00
#!/usr/bin/env bash
if [ ! -f .env ]; then
cp /tmp/.env .
fi
set -a
source .env
set +a
exec "$@"