13 lines
551 B
Bash
Executable File
13 lines
551 B
Bash
Executable File
#!/bin/bash
|
|
# This is part of Application Builder.
|
|
# https://github.com/golift/application-builder
|
|
|
|
# https://www.smockle.com/blog/2019/04/22/migrating-from-travis-ci-to-docker-hub-automated-builds/
|
|
|
|
# This upgrades the docker client on the Docker Cloud server to a version
|
|
# that contains the `docker manifest` command. To use `docker manifest`
|
|
# set `DOCKER_CLI_EXPERIMENTAL=enabled` in your build environment.
|
|
# See README.md (in this dir) and the screenshot for more info.
|
|
|
|
docker run --rm --privileged multiarch/qemu-user-static:register --reset
|