blob: 786570388b0cab4882a826f872ee8569f4cdb875 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
set -xeuo pipefail
cd "${TMPDIR:-/tmp}"
apk upgrade
# Nothing much here, at least yet. Useful this way already in order to
# test some very base executables, as well as ones that come from
# busybox. Don't lose that if adding stuff here!
# An arbitrary package containing an init script or the like for
# testing service completion.
apk add nginx-openrc
|