diff options
| author | 2019-07-07 20:07:01 +0200 | |
|---|---|---|
| committer | 2019-07-07 20:07:01 +0200 | |
| commit | 8c2cf1b4dd3a6c79d77f9dc1a256e9d4a8db6a68 (patch) | |
| tree | c8b81ad0d7dfff999c48c67d78685c8a55d0c43b /Docker/hooks/pre_build | |
| parent | dcb090dcd779581c1eddb20b4860848b02139145 (diff) | |
Docker healthcheck+ labels (#2438)
* Add Docker labels
And try to fix the platform metadata for ARM, and add health check
* Execution rights
* Remove experimental features not supported by Docker Hub
"--squash" is only supported on a Docker daemon with experimental
features enabled. build hook failed! (1)
* Fix paths
Diffstat (limited to 'Docker/hooks/pre_build')
| -rwxr-xr-x | Docker/hooks/pre_build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Docker/hooks/pre_build b/Docker/hooks/pre_build index f6c8211c0..32074059c 100755 --- a/Docker/hooks/pre_build +++ b/Docker/hooks/pre_build @@ -1,6 +1,8 @@ #!/bin/bash -if [[ "$DOCKERFILE_PATH" == *-ARM ]]; +cp README.md ../ + +if [[ "$DOCKERFILE_PATH" == *-ARM ]] then # https://github.com/balena-io/qemu # Download a local copy of QEMU on Docker Hub build machine |
