cmziuk/entrypoint.sh
Cameron Redmore 866bc2ed9e
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 57s
Add entrypoint to allow file override.
2025-04-18 16:51:10 +01:00

9 lines
No EOL
279 B
Bash

#!/bin/bash
# Check if the folder /extra exists, if so, copy all files from /extra to /usr/share/nginx/html
if [ -d "/extra" ]; then
echo "Copying files from /extra to /usr/share/nginx/html"
cp -r /extra/* /usr/share/nginx/html/
fi
echo "Executing command: $@"
exec "$@"