-
Notifications
You must be signed in to change notification settings - Fork 0
Labels
enhancementNew feature or requestNew feature or request
Description
Summary
Move the Docker entrypoint script(s) to the scripts/docker/ directory for better project organization.
Details
- Currently, the entrypoint script is not located under
scripts/docker/, which makes the structure less clear and less maintainable in the long run. - Relocating entrypoints into
scripts/docker/is a common best practice and helps keep project root clean while grouping Docker-related scripts together. - No logic change—just a
git mvand the appropriate path adjustments inDockerfileand other references (CI/CD, documentation, etc).
Steps
- Move the entrypoint script(s) to
scripts/docker/. - Update all relevant references, such as in your
Dockerfile(theENTRYPOINTorCMDline), and any documentation or CI files that use the script. - Test docker build to ensure the entrypoint works from the new location.
This is a minimal refactoring task. If you want further improvements—like consolidating multiple docker scripts, adding ownership comments, or making the script shellcheck-compliant—open follow-up issues or let me know.
References
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request