| #!/bin/bash | |
| # Base Alpine image with skia:skia user set up | |
| set -x -e | |
| APPNAME=basealpine | |
| # We don't need to set TAG because if we are testing this locally, the autogenerated | |
| # tag is fine, and if we are running this on Louhi, Louhi will set the tag for us. | |
| copy_release_files () { | |
| # Everything is handled in the Dockerfile | |
| ${INSTALL} --mode=644 -T Dockerfile ${ROOT}/Dockerfile | |
| } | |
| source ../../bash/docker_build.sh |