init: technical take home for gitlab operate

This commit is contained in:
uhryniuk
2026-01-15 20:18:23 -06:00
commit a9a7e13bbe
149 changed files with 1812 additions and 0 deletions

9
docker-entrypoint.sh Normal file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
set -e
# Build command arguments
if [ -n "$CONFIG_FILE" ]; then
exec ./interview-server -config "$CONFIG_FILE"
else
exec ./interview-server
fi