mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-01 16:19:37 +01:00
280c8272f8
Use the exec Bash command so that the final running application becomes the container’s PID 1. This allows the application to receive any Unix signals sent to the container, in accordance with https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#entrypoint Currently, SIGTERM signals sent by kubernetes are not passed to the executed binary. Signed-off-by: Xavier Duthil <xavier.duthil@corp.ovh.com>
8 lines
87 B
Bash
8 lines
87 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
/home/scanner/install_cert.sh
|
|
|
|
exec /home/scanner/bin/scanner-trivy
|